* [PATCH i-g-t v4 0/4] Ignore more warns in xe_wedged tests
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
@ 2024-11-26 18:10 ` Kamil Konieczny
2024-11-26 18:10 ` [PATCH i-g-t v4 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings Kamil Konieczny
` (9 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Kamil Konieczny @ 2024-11-26 18:10 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Jonathan Cavitt, Rodrigo Vivi,
Zbigniew Kempczyński
It turns out that there are more drm warnings which should be ignored
by igt_runner. Tests succeeds but later on when generating results
runner turns it into a failure.
v2: corrected and added more regex-es, move '|' to begin of split
strings for better reading, corrected name in Cc and added r-b
v3: corrected drmtest logic for opening cards, improved assert
logic for xe unbind (Kamil)
v4: simplify and correct pfx___drm regex
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Kamil Konieczny (4):
tests/intel/xe_wedged: Ignore more dmesg warnings
HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_wedged
lib/drmtest: invalidate cached fds after unbind
lib/igt_sysfs: improve xe sysfs checks
lib/drmtest.c | 18 ++++++++++++++++++
lib/drmtest.h | 2 ++
lib/igt_sysfs.c | 6 ++++--
tests/core_hotunplug.c | 1 +
tests/intel-ci/xe-fast-feedback.testlist | 4 ++++
tests/intel/xe_wedged.c | 6 +++++-
6 files changed, 34 insertions(+), 3 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH i-g-t v4 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
2024-11-26 18:10 ` [PATCH i-g-t v4 0/4] " Kamil Konieczny
@ 2024-11-26 18:10 ` Kamil Konieczny
2024-11-26 23:09 ` Matt Roper
2024-11-26 18:10 ` [PATCH i-g-t v4 2/4] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_wedged Kamil Konieczny
` (8 subsequent siblings)
10 siblings, 1 reply; 14+ messages in thread
From: Kamil Konieczny @ 2024-11-26 18:10 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Jonathan Cavitt, Rodrigo Vivi,
Zbigniew Kempczyński
There are more warnings in dmesg which should be ignored,
one comes from driver, for example:
xe 0000:00:02.0: [drm] *ERROR* GT0: reset failed (-ECANCELED)
xe 0000:00:02.0: [drm] *ERROR* GT1: Failed to submit gsc proxy rq (-ETIME)
or from drm:
<4> [438.651441] ? __pfx___drm_printfn_seq_file+0x10/0x10 [drm]
<4> [438.651476] ? __pfx___drm_puts_seq_file+0x10/0x10 [drm]
or from kernel itself:
<4> [226.597358] Modules linked in:
so extend regex with them.
v2: move '|' to begin of strings for better reading (Jonathan)
extend regex with two more, correct __pfx___ regex (Kamil)
added r-b and correcting name in Cc
v3: fix and simplify pfx___drm regex (Kamil)
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2919
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
tests/intel/xe_wedged.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c
index 88e5d47f2..9a95a2455 100644
--- a/tests/intel/xe_wedged.c
+++ b/tests/intel/xe_wedged.c
@@ -29,7 +29,11 @@
static void ignore_wedged_in_dmesg(void)
{
/* this is needed for igt_runner so it will ignore it */
- igt_emit_ignore_dmesg_regex("CRITICAL: Xe has declared device [0-9A-Fa-f:.]* as wedged");
+ igt_emit_ignore_dmesg_regex("CRITICAL: Xe has declared device [0-9A-Fa-f:.]* as wedged"
+ "|GT[0-9A-Fa-f]*: reset failed .-ECANCELED"
+ "|GT[0-9A-Fa-f]*: Failed to submit"
+ "|Modules linked in:"
+ "|__pfx___drm_");
}
static void force_wedged(int fd)
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH i-g-t v4 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings
2024-11-26 18:10 ` [PATCH i-g-t v4 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings Kamil Konieczny
@ 2024-11-26 23:09 ` Matt Roper
0 siblings, 0 replies; 14+ messages in thread
From: Matt Roper @ 2024-11-26 23:09 UTC (permalink / raw)
To: Kamil Konieczny
Cc: igt-dev, Jonathan Cavitt, Rodrigo Vivi, Zbigniew Kempczyński
On Tue, Nov 26, 2024 at 07:10:20PM +0100, Kamil Konieczny wrote:
> There are more warnings in dmesg which should be ignored,
> one comes from driver, for example:
>
> xe 0000:00:02.0: [drm] *ERROR* GT0: reset failed (-ECANCELED)
> xe 0000:00:02.0: [drm] *ERROR* GT1: Failed to submit gsc proxy rq (-ETIME)
>
> or from drm:
>
> <4> [438.651441] ? __pfx___drm_printfn_seq_file+0x10/0x10 [drm]
> <4> [438.651476] ? __pfx___drm_puts_seq_file+0x10/0x10 [drm]
>
> or from kernel itself:
>
> <4> [226.597358] Modules linked in:
>
> so extend regex with them.
>
> v2: move '|' to begin of strings for better reading (Jonathan)
> extend regex with two more, correct __pfx___ regex (Kamil)
> added r-b and correcting name in Cc
> v3: fix and simplify pfx___drm regex (Kamil)
>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2919
I didn't realize you were already working on this issue; I just sent a
different fix for this issue here before I saw your patch:
https://lore.kernel.org/all/20241126230240.1780940-1-matthew.d.roper@intel.com/
Basically the test isn't touching the 'verbose' setting for fault
injection today, so we usually wind up with verbose=2 by default which
prints both the general fault injection message (not a problem) and a
kernel dump_stack (which is at warning log level and thus confuses the
runner). If we explicitly set verbose=1, then we'll just get the
general notification about a fault being injected, but the unnecessary
dump_stack() is skipped.
Matt
> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> tests/intel/xe_wedged.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c
> index 88e5d47f2..9a95a2455 100644
> --- a/tests/intel/xe_wedged.c
> +++ b/tests/intel/xe_wedged.c
> @@ -29,7 +29,11 @@
> static void ignore_wedged_in_dmesg(void)
> {
> /* this is needed for igt_runner so it will ignore it */
> - igt_emit_ignore_dmesg_regex("CRITICAL: Xe has declared device [0-9A-Fa-f:.]* as wedged");
> + igt_emit_ignore_dmesg_regex("CRITICAL: Xe has declared device [0-9A-Fa-f:.]* as wedged"
> + "|GT[0-9A-Fa-f]*: reset failed .-ECANCELED"
> + "|GT[0-9A-Fa-f]*: Failed to submit"
> + "|Modules linked in:"
> + "|__pfx___drm_");
> }
>
> static void force_wedged(int fd)
> --
> 2.34.1
>
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t v4 2/4] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_wedged
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
2024-11-26 18:10 ` [PATCH i-g-t v4 0/4] " Kamil Konieczny
2024-11-26 18:10 ` [PATCH i-g-t v4 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings Kamil Konieczny
@ 2024-11-26 18:10 ` Kamil Konieczny
2024-11-26 18:10 ` [PATCH i-g-t v4 3/4] lib/drmtest: invalidate cached fds after unbind Kamil Konieczny
` (7 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Kamil Konieczny @ 2024-11-26 18:10 UTC (permalink / raw)
To: igt-dev; +Cc: Kamil Konieczny
Test solution which should allow igt runner to properly
classify xe_wedged tests as success, so adding two into
xe BAT runs:
igt@xe_wedged@basic-wedged
igt@xe_wedged@wedged-at-any-timeout
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 727be9230..05112b221 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -1,12 +1,16 @@
# Should be the first test
igt@xe_module_load@load
+igt@xe_wedged@basic-wedged
+
igt@fbdev@eof
igt@fbdev@info
igt@fbdev@nullptr
igt@fbdev@read
igt@fbdev@write
+igt@xe_wedged@wedged-at-any-timeout
+
igt@kms_addfb_basic@addfb25-4-tiled
igt@kms_addfb_basic@addfb25-bad-modifier
igt@kms_addfb_basic@addfb25-modifier-no-flag
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH i-g-t v4 3/4] lib/drmtest: invalidate cached fds after unbind
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (2 preceding siblings ...)
2024-11-26 18:10 ` [PATCH i-g-t v4 2/4] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_wedged Kamil Konieczny
@ 2024-11-26 18:10 ` Kamil Konieczny
2024-12-19 15:17 ` Lucas De Marchi
2024-11-26 18:10 ` [PATCH i-g-t v4 4/4] lib/igt_sysfs: improve xe sysfs checks Kamil Konieczny
` (6 subsequent siblings)
10 siblings, 1 reply; 14+ messages in thread
From: Kamil Konieczny @ 2024-11-26 18:10 UTC (permalink / raw)
To: igt-dev; +Cc: Kamil Konieczny, Janusz Krzysztofik
After driver unbind or reload cached drm file descriptors could
become stale, so there is no point in preventing calling
drm_open_driver() again. This should prevent errors like:
(xe_wedged:3680) drmtest-DEBUG: Condition stat(path, &new) != 0 occurred
in function _is_already_opened, file ../lib/drmtest.c:407
(xe_wedged:3680) drmtest-WARNING: card maching filter 0 is already opened
when test tries to open again driver and make checks if
it is functional.
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/drmtest.c | 18 ++++++++++++++++++
lib/drmtest.h | 2 ++
lib/igt_sysfs.c | 1 +
tests/core_hotunplug.c | 1 +
4 files changed, 22 insertions(+)
diff --git a/lib/drmtest.c b/lib/drmtest.c
index 2dd4540b8..2919a4891 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -726,6 +726,24 @@ static void cancel_work_at_exit_render(int sig)
at_exit_drm_render_fd = -1;
}
+/**
+ * __drm_invalidate_opened_fds:
+ *
+ * Invalidate drmtest internal fd caches.
+ */
+void __drm_invalidate_opened_fds(void)
+{
+ _opened_fds_count = 0;
+ if (at_exit_drm_fd >= 0)
+ close(at_exit_drm_fd);
+
+ at_exit_drm_fd = -1;
+ if (at_exit_drm_render_fd >= 0)
+ close(at_exit_drm_render_fd);
+
+ at_exit_drm_render_fd = -1;
+}
+
static const char *chipset_to_vendor_str(int chipset)
{
return chipset == DRIVER_XE ? chipset_to_str(DRIVER_INTEL) : chipset_to_str(chipset);
diff --git a/lib/drmtest.h b/lib/drmtest.h
index 27e5a18e2..fb37a1070 100644
--- a/lib/drmtest.h
+++ b/lib/drmtest.h
@@ -129,6 +129,8 @@ int drm_reopen_driver(int fd);
int drm_prepare_filtered_multigpu(int chipset);
int drm_open_filtered_card(int idx);
+void __drm_invalidate_opened_fds(void);
+
void igt_require_amdgpu(int fd);
void igt_require_intel(int fd);
void igt_require_i915(int fd);
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index 00d5822fd..e903a9857 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -1448,6 +1448,7 @@ int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_acti
sysfs = open("/sys/bus/pci/drivers/xe", O_DIRECTORY);
igt_assert(sysfs);
+ __drm_invalidate_opened_fds();
switch(action) {
case XE_SYSFS_DRIVER_BIND:
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index 7f17f4423..39042f200 100644
--- a/tests/core_hotunplug.c
+++ b/tests/core_hotunplug.c
@@ -489,6 +489,7 @@ static bool healthcheck(struct hotunplug *priv, bool recover)
/* device name may have changed, rebuild IGT device list */
igt_devices_scan(true);
+ __drm_invalidate_opened_fds();
node_healthcheck(priv, recover ? FLAG_RECOVER : 0);
if (!priv->failure)
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH i-g-t v4 3/4] lib/drmtest: invalidate cached fds after unbind
2024-11-26 18:10 ` [PATCH i-g-t v4 3/4] lib/drmtest: invalidate cached fds after unbind Kamil Konieczny
@ 2024-12-19 15:17 ` Lucas De Marchi
0 siblings, 0 replies; 14+ messages in thread
From: Lucas De Marchi @ 2024-12-19 15:17 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev, Janusz Krzysztofik, Zbigniew Kempczyński
On Tue, Nov 26, 2024 at 07:10:22PM +0100, Kamil Konieczny wrote:
>After driver unbind or reload cached drm file descriptors could
>become stale, so there is no point in preventing calling
>drm_open_driver() again. This should prevent errors like:
>
>(xe_wedged:3680) drmtest-DEBUG: Condition stat(path, &new) != 0 occurred
> in function _is_already_opened, file ../lib/drmtest.c:407
>(xe_wedged:3680) drmtest-WARNING: card maching filter 0 is already opened
>
>when test tries to open again driver and make checks if
>it is functional.
>
>Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
>Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>---
> lib/drmtest.c | 18 ++++++++++++++++++
> lib/drmtest.h | 2 ++
> lib/igt_sysfs.c | 1 +
> tests/core_hotunplug.c | 1 +
> 4 files changed, 22 insertions(+)
>
>diff --git a/lib/drmtest.c b/lib/drmtest.c
>index 2dd4540b8..2919a4891 100644
>--- a/lib/drmtest.c
>+++ b/lib/drmtest.c
>@@ -726,6 +726,24 @@ static void cancel_work_at_exit_render(int sig)
> at_exit_drm_render_fd = -1;
> }
>
>+/**
>+ * __drm_invalidate_opened_fds:
>+ *
>+ * Invalidate drmtest internal fd caches.
>+ */
>+void __drm_invalidate_opened_fds(void)
>+{
>+ _opened_fds_count = 0;
>+ if (at_exit_drm_fd >= 0)
>+ close(at_exit_drm_fd);
>+
>+ at_exit_drm_fd = -1;
>+ if (at_exit_drm_render_fd >= 0)
>+ close(at_exit_drm_render_fd);
>+
>+ at_exit_drm_render_fd = -1;
humn... this only cleans up the _at_exit fds, leaving the fd/stat intact
in the array. The next drm_open_driver() will still complain that the fd
is already opened.
>+}
>+
> static const char *chipset_to_vendor_str(int chipset)
> {
> return chipset == DRIVER_XE ? chipset_to_str(DRIVER_INTEL) : chipset_to_str(chipset);
>diff --git a/lib/drmtest.h b/lib/drmtest.h
>index 27e5a18e2..fb37a1070 100644
>--- a/lib/drmtest.h
>+++ b/lib/drmtest.h
>@@ -129,6 +129,8 @@ int drm_reopen_driver(int fd);
> int drm_prepare_filtered_multigpu(int chipset);
> int drm_open_filtered_card(int idx);
>
>+void __drm_invalidate_opened_fds(void);
>+
> void igt_require_amdgpu(int fd);
> void igt_require_intel(int fd);
> void igt_require_i915(int fd);
>diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
>index 00d5822fd..e903a9857 100644
>--- a/lib/igt_sysfs.c
>+++ b/lib/igt_sysfs.c
>@@ -1448,6 +1448,7 @@ int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_acti
>
> sysfs = open("/sys/bus/pci/drivers/xe", O_DIRECTORY);
> igt_assert(sysfs);
>+ __drm_invalidate_opened_fds();
this doesn't seem to be placed correctly. It shouldn't be done here for
all the operations below and doing so means the at_exit_ logic stops
working.
why don't we pair it with drm_close_driver() and change other places to
make sure they call drm_close_driver() rather than plain close(), like I
did in my patch series?
Also, another possible issue is that __drm_open_device() doesn't use
O_CLOEXEC, so if the test exec it will leak the fd and that will change
the logic of what will be the next card# on a rebind.
Lucas De Marchi
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t v4 4/4] lib/igt_sysfs: improve xe sysfs checks
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (3 preceding siblings ...)
2024-11-26 18:10 ` [PATCH i-g-t v4 3/4] lib/drmtest: invalidate cached fds after unbind Kamil Konieczny
@ 2024-11-26 18:10 ` Kamil Konieczny
2024-11-26 19:07 ` ✗ Xe.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev5) Patchwork
` (5 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Kamil Konieczny @ 2024-11-26 18:10 UTC (permalink / raw)
To: igt-dev; +Cc: Kamil Konieczny
Improve check for Xe sysfs failed open. While at this, make sure
it will not be closed just before unbind and also use drmtest
close function, as it will properly call xe_device_put().
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/igt_sysfs.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index e903a9857..850ca21b4 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -1447,7 +1447,7 @@ int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_acti
int sysfs;
sysfs = open("/sys/bus/pci/drivers/xe", O_DIRECTORY);
- igt_assert(sysfs);
+ igt_assert_f(sysfs != -1, "Sysfs open failed, errno=%d\n", errno);
__drm_invalidate_opened_fds();
switch(action) {
@@ -1470,7 +1470,8 @@ int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_acti
* We need to close the client for a proper release, before
* binding back again.
*/
- close(xe_device);
+ igt_assert_neq(xe_device, sysfs);
+ drm_close_driver(xe_device);
igt_assert(igt_sysfs_set(sysfs, "bind", pci_slot));
close(sysfs);
--
2.34.1
^ permalink raw reply related [flat|nested] 14+ messages in thread* ✗ Xe.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev5)
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (4 preceding siblings ...)
2024-11-26 18:10 ` [PATCH i-g-t v4 4/4] lib/igt_sysfs: improve xe sysfs checks Kamil Konieczny
@ 2024-11-26 19:07 ` Patchwork
2024-11-26 20:15 ` ✗ Xe.CI.Full: " Patchwork
` (4 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-11-26 19:07 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7126 bytes --]
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev5)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8126_BAT -> XEIGTPW_12202_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12202_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12202_BAT, 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 (8 -> 9)
------------------------------
Additional (1): bat-pvc-2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12202_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- bat-lnl-2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/bat-lnl-2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-lnl-2/igt@core_hotunplug@unbind-rebind.html
- bat-lnl-1: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1:
- bat-adlp-7: [PASS][5] -> [DMESG-WARN][6] +3 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/bat-adlp-7/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-adlp-7/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1.html
* igt@xe_wedged@wedged-at-any-timeout:
- bat-adlp-vf: NOTRUN -> [ABORT][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-adlp-vf/igt@xe_wedged@wedged-at-any-timeout.html
- bat-pvc-2: NOTRUN -> [ABORT][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-pvc-2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-dg2-oem2: NOTRUN -> [ABORT][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-dg2-oem2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-atsm-2: NOTRUN -> [ABORT][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-atsm-2/igt@xe_wedged@wedged-at-any-timeout.html
Known issues
------------
Here are the changes found in XEIGTPW_12202_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-adlp-7: [PASS][11] -> [INCOMPLETE][12] ([Intel XE#1727]) +5 other tests incomplete
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@xe_live_ktest@xe_migrate:
- bat-lnl-2: [PASS][13] -> [SKIP][14] ([Intel XE#1192]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html
- bat-lnl-1: [PASS][15] -> [SKIP][16] ([Intel XE#1192]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
* igt@xe_wedged@basic-wedged:
- bat-adlp-vf: NOTRUN -> [DMESG-WARN][17] ([Intel XE#2919])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-adlp-vf/igt@xe_wedged@basic-wedged.html
- bat-lnl-1: NOTRUN -> [DMESG-WARN][18] ([Intel XE#2919] / [Intel XE#3119])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-lnl-1/igt@xe_wedged@basic-wedged.html
- bat-bmg-2: NOTRUN -> [DMESG-WARN][19] ([Intel XE#2919])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-bmg-2/igt@xe_wedged@basic-wedged.html
- bat-adlp-7: NOTRUN -> [DMESG-WARN][20] ([Intel XE#2919])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-adlp-7/igt@xe_wedged@basic-wedged.html
- bat-lnl-2: NOTRUN -> [DMESG-WARN][21] ([Intel XE#2919] / [Intel XE#3119])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-lnl-2/igt@xe_wedged@basic-wedged.html
- bat-dg2-oem2: NOTRUN -> [DMESG-WARN][22] ([Intel XE#2919])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-dg2-oem2/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-at-any-timeout:
- bat-bmg-2: NOTRUN -> [ABORT][23] ([Intel XE#3421])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-bmg-1: NOTRUN -> [ABORT][24] ([Intel XE#3421])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html
- bat-lnl-2: NOTRUN -> [DMESG-WARN][25] ([Intel XE#3119])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-lnl-2/igt@xe_wedged@wedged-at-any-timeout.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-lnl-1: [SKIP][26] ([Intel XE#2229]) -> [SKIP][27] ([Intel XE#1192])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
- bat-lnl-2: [SKIP][28] ([Intel XE#2229]) -> [SKIP][29] ([Intel XE#1192])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
Build changes
-------------
* IGT: IGT_8126 -> IGTPW_12202
* Linux: xe-2279-7cd4d1589e461d61330ec272c448bc6d1b9da35e -> xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198
IGTPW_12202: 12202
IGT_8126: 8126
xe-2279-7cd4d1589e461d61330ec272c448bc6d1b9da35e: 7cd4d1589e461d61330ec272c448bc6d1b9da35e
xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198: 739a2506c44a0be22cc842d2c625a05ed21c1198
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/index.html
[-- Attachment #2: Type: text/html, Size: 8794 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Xe.CI.Full: failure for Ignore more warns in xe_wedged tests (rev5)
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (5 preceding siblings ...)
2024-11-26 19:07 ` ✗ Xe.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev5) Patchwork
@ 2024-11-26 20:15 ` Patchwork
2024-11-26 20:40 ` ✓ i915.CI.BAT: success " Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-11-26 20:15 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 174985 bytes --]
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev5)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8126_full -> XEIGTPW_12202_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12202_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12202_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_12202_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@flip-vs-panning-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_flip@flip-vs-panning-interruptible@d-hdmi-a3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_flip@flip-vs-panning-interruptible@d-hdmi-a3.html
* igt@kms_flip@flip-vs-rmfb@c-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_flip@flip-vs-rmfb@c-hdmi-a3.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-bmg: [SKIP][4] ([Intel XE#2136]) -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@xe_eudebug_online@pagefault-write:
- shard-dg2-set2: [SKIP][6] ([Intel XE#1130]) -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@xe_eudebug_online@pagefault-write.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [DMESG-WARN][8] ([Intel XE#3468]) -> [DMESG-WARN][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@xe_wedged@wedged-mode-toggle.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html
Known issues
------------
Here are the changes found in XEIGTPW_12202_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [PASS][10] -> [FAIL][11] ([Intel XE#3440])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@core_getversion@all-cards.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@core_getversion@all-cards.html
* igt@core_hotunplug@hotreplug:
- shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#1885]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@core_hotunplug@hotreplug.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@core_hotunplug@hotreplug.html
- shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#1885])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@core_hotunplug@hotreplug.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@core_hotunplug@hotreplug.html
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [PASS][16] -> [FAIL][17] ([Intel XE#3249])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@core_setmaster@master-drop-set-root.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][18] -> [SKIP][19] ([Intel XE#3453])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@core_setmaster@master-drop-set-shared-fd.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@fbdev@info:
- shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#2134]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@fbdev@info.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@fbdev@info.html
* igt@fbdev@read:
- shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2134]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@fbdev@read.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@fbdev@read.html
* igt@kms_addfb_basic@bad-pitch-128:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2423]) +12 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_addfb_basic@bad-pitch-128.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
- shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#1701]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-180.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2327]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1124])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +76 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2:
- shard-bmg: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#3468]) +38 other tests dmesg-warn
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@mode-transition@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#314]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2325])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2252])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_cursor_crc@cursor-onscreen-128x128:
- shard-bmg: [PASS][41] -> [DMESG-FAIL][42] ([Intel XE#3468]) +7 other tests dmesg-fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-128x128.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-128x128.html
* igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][43] ([Intel XE#3468]) +3 other tests dmesg-fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [PASS][44] -> [INCOMPLETE][45] ([Intel XE#3468])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_cursor_crc@cursor-suspend.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][46] ([Intel XE#3468])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][47] -> [SKIP][48] ([Intel XE#2291]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2-set2: [PASS][49] -> [SKIP][50] ([Intel XE#2423] / [i915#2575]) +99 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#1340]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([i915#3804])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#301]) +4 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#2316]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][56] -> [FAIL][57] ([Intel XE#2882])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [PASS][58] -> [FAIL][59] ([Intel XE#301])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3:
- shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#3486])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-lnl: [PASS][62] -> [FAIL][63] ([Intel XE#886]) +4 other tests fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2293]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [INCOMPLETE][65] ([Intel XE#1727] / [Intel XE#3468])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2136]) +16 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#455]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#2136]) +21 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: [PASS][70] -> [SKIP][71] ([Intel XE#2136]) +28 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [FAIL][72] ([Intel XE#2333])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2311])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2313]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#653]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_getfb@getfb-handle-zero:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2423] / [i915#2575]) +21 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_getfb@getfb-handle-zero.html
* igt@kms_lease@possible-crtcs-filtering:
- shard-bmg: [PASS][78] -> [SKIP][79] ([Intel XE#2423]) +87 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_lease@possible-crtcs-filtering.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_lease@possible-crtcs-filtering.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][80] ([Intel XE#361])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a:
- shard-bmg: [PASS][81] -> [DMESG-WARN][82] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2763]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#2763] / [Intel XE#455])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2763]) +11 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][86] -> [FAIL][87] ([Intel XE#1430])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-bmg: [PASS][88] -> [SKIP][89] ([Intel XE#2446]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_pm_rpm@drm-resources-equal.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [PASS][90] -> [DMESG-WARN][91] ([Intel XE#3468]) +3 other tests dmesg-warn
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2446]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-50:
- shard-bmg: [PASS][94] -> [DMESG-WARN][95] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-warn
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_pm_rpm@universal-planes-dpms@plane-50.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_pm_rpm@universal-planes-dpms@plane-50.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1489]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1489]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-basic:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2850] / [Intel XE#929])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2136]) +16 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_psr@psr2-no-drrs.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#2883]) +2 other tests fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][103] ([Intel XE#3468]) +1 other test dmesg-warn
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-dp-4.html
* igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][104] ([Intel XE#1727] / [Intel XE#3468])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6.html
* igt@testdisplay:
- shard-dg2-set2: [PASS][105] -> [SKIP][106] ([Intel XE#2423])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@testdisplay.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@testdisplay.html
* igt@xe_dma_buf_sync@export-dma-buf-many-read-write-sync:
- shard-bmg: [PASS][107] -> [DMESG-WARN][108] ([Intel XE#1727]) +2 other tests dmesg-warn
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_dma_buf_sync@export-dma-buf-many-read-write-sync.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@xe_dma_buf_sync@export-dma-buf-many-read-write-sync.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2905]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][110] ([Intel XE#1473])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_balancer@no-exec-parallel-userptr-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1130]) +28 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@xe_exec_balancer@no-exec-parallel-userptr-rebind.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [PASS][112] -> [SKIP][113] ([Intel XE#1130]) +205 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2322])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race-prefetch:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#1130]) +14 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-prefetch.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#3467]) +1 other test dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [PASS][118] -> [DMESG-WARN][119] ([Intel XE#3343])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_live_ktest@xe_migrate:
- shard-lnl: [PASS][120] -> [SKIP][121] ([Intel XE#1192])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-1/igt@xe_live_ktest@xe_migrate.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-1/igt@xe_live_ktest@xe_migrate.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [PASS][122] -> [SKIP][123] ([Intel XE#1192])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html
* igt@xe_module_load@load:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#378])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@xe_module_load@load.html
* igt@xe_oa@non-zero-reason@ccs-0:
- shard-bmg: NOTRUN -> [DMESG-WARN][125] ([Intel XE#3468]) +21 other tests dmesg-warn
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@xe_oa@non-zero-reason@ccs-0.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#944])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
- shard-bmg: [PASS][127] -> [SKIP][128] ([Intel XE#1130]) +212 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
#### Possible fixes ####
* igt@core_hotunplug@hotunbind-rebind:
- shard-dg2-set2: [SKIP][129] ([Intel XE#1885]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@core_hotunplug@hotunbind-rebind.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@core_hotunplug@hotunbind-rebind.html
* igt@core_setmaster@master-drop-set-user:
- shard-bmg: [FAIL][131] ([Intel XE#3339]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@core_setmaster@master-drop-set-user.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@eof:
- shard-bmg: [SKIP][133] ([Intel XE#2134]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@fbdev@eof.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@fbdev@eof.html
* igt@fbdev@write:
- shard-dg2-set2: [SKIP][135] ([Intel XE#2134]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@fbdev@write.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@fbdev@write.html
* igt@kms_addfb_basic@unused-handle:
- shard-bmg: [SKIP][137] ([Intel XE#2423]) -> [PASS][138] +99 other tests pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_addfb_basic@unused-handle.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_addfb_basic@unused-handle.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [FAIL][139] ([Intel XE#1426]) -> [PASS][140] +1 other test pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [DMESG-WARN][141] ([Intel XE#3468]) -> [PASS][142] +34 other tests pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: [SKIP][143] ([Intel XE#2136]) -> [PASS][144] +25 other tests pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-addfb-size-overflow:
- shard-bmg: [SKIP][145] ([Intel XE#829]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_big_fb@x-tiled-addfb-size-overflow.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_big_fb@x-tiled-addfb-size-overflow.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][147] ([Intel XE#829]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][149] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-bmg: [SKIP][151] -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-dg2-set2: [SKIP][153] -> [PASS][154] +7 other tests pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_cdclk@mode-transition.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_cdclk@mode-transition.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2-set2: [SKIP][155] ([Intel XE#2423] / [i915#2575]) -> [PASS][156] +67 other tests pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [SKIP][157] ([Intel XE#2423]) -> [PASS][158] +1 other test pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_dp_aux_dev.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_dp_aux_dev.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-lnl: [FAIL][159] ([Intel XE#2958]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-1/igt@kms_fbcon_fbt@fbc-suspend.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [SKIP][161] ([Intel XE#3189]) -> [PASS][162] +5 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [DMESG-WARN][163] -> [PASS][164] +2 other tests pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [DMESG-FAIL][165] ([Intel XE#3468]) -> [PASS][166] +8 other tests pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][167] ([Intel XE#886]) -> [PASS][168] +1 other test pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6:
- shard-dg2-set2: [FAIL][169] ([Intel XE#301]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend@a-dp4:
- shard-dg2-set2: [DMESG-WARN][171] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_flip@flip-vs-suspend@a-dp4.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_flip@flip-vs-suspend@a-dp4.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][173] ([Intel XE#3468]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
- shard-bmg: [INCOMPLETE][175] ([Intel XE#2597]) -> [PASS][176] +1 other test pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a6:
- shard-dg2-set2: [DMESG-FAIL][177] ([Intel XE#3468]) -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_flip@flip-vs-suspend@b-hdmi-a6.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_flip@flip-vs-suspend@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a6:
- shard-dg2-set2: [DMESG-FAIL][179] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][180] +4 other tests pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_flip@flip-vs-suspend@c-hdmi-a6.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_flip@flip-vs-suspend@c-hdmi-a6.html
* igt@kms_flip@plain-flip-fb-recreate@c-edp1:
- shard-lnl: [FAIL][181] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][182] +1 other test pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][183] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][184] +8 other tests pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][185] ([Intel XE#2136]) -> [PASS][186] +23 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [SKIP][187] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_plane_scaling@intel-max-src-size.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_dc@dc9-dpms:
- shard-bmg: [DMESG-WARN][189] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][190] +2 other tests pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_pm_dc@dc9-dpms.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][191] ([Intel XE#2029]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-1/igt@kms_pm_dc@deep-pkgc.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2-set2: [SKIP][193] ([Intel XE#2446]) -> [PASS][194] +1 other test pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: [SKIP][195] ([Intel XE#2446]) -> [PASS][196] +2 other tests pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_pm_rpm@i2c.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_pm_rpm@i2c.html
* igt@kms_sysfs_edid_timing:
- shard-dg2-set2: [DMESG-WARN][197] ([Intel XE#1727]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_sysfs_edid_timing.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_sysfs_edid_timing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][199] ([Intel XE#899]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@query-busy-hang:
- shard-bmg: [INCOMPLETE][201] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][202] +1 other test pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_vblank@query-busy-hang.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@kms_vblank@query-busy-hang.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [FAIL][203] ([Intel XE#1522]) -> [PASS][204] +1 other test pass
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-1/igt@kms_vrr@max-min@pipe-a-edp-1.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-5/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_drm_fdinfo@utilization-others-full-load:
- shard-lnl: [FAIL][205] ([Intel XE#3512]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@xe_drm_fdinfo@utilization-others-full-load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-3/igt@xe_drm_fdinfo@utilization-others-full-load.html
* igt@xe_evict@evict-beng-small-external-cm:
- shard-bmg: [DMESG-WARN][207] ([Intel XE#1727]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@xe_evict@evict-beng-small-external-cm.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@xe_evict@evict-beng-small-external-cm.html
* igt@xe_exec_basic@many-bindexecqueue-rebind:
- shard-bmg: [SKIP][209] ([Intel XE#1130]) -> [PASS][210] +203 other tests pass
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@xe_exec_basic@many-bindexecqueue-rebind.html
* igt@xe_exec_basic@many-null-rebind:
- shard-dg2-set2: [SKIP][211] ([Intel XE#1130]) -> [PASS][212] +137 other tests pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_exec_basic@many-null-rebind.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_exec_basic@many-null-rebind.html
* igt@xe_gt_freq@freq_suspend:
- shard-bmg: [DMESG-FAIL][213] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][214] +1 other test pass
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@xe_gt_freq@freq_suspend.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@xe_gt_freq@freq_suspend.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-dg2-set2: [SKIP][215] ([Intel XE#1192]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@xe_live_ktest@xe_dma_buf.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-bmg: [SKIP][217] ([Intel XE#2229]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_oa@mmio-triggered-reports@rcs-0:
- shard-lnl: [FAIL][219] ([Intel XE#2249]) -> [PASS][220] +1 other test pass
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@xe_oa@mmio-triggered-reports@rcs-0.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-6/igt@xe_oa@mmio-triggered-reports@rcs-0.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [DMESG-WARN][221] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-prefetch.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s4-mocs:
- shard-bmg: [DMESG-WARN][223] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@xe_pm@s4-mocs.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@xe_pm@s4-mocs.html
* igt@xe_tlb@basic-tlb:
- shard-lnl: [CRASH][225] ([Intel XE#3212]) -> [PASS][226]
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-6/igt@xe_tlb@basic-tlb.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-1/igt@xe_tlb@basic-tlb.html
* igt@xe_wedged@basic-wedged:
- shard-lnl: [DMESG-WARN][227] ([Intel XE#2919] / [Intel XE#3119]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-8/igt@xe_wedged@basic-wedged.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-lnl-7/igt@xe_wedged@basic-wedged.html
#### Warnings ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-bmg: [SKIP][229] ([Intel XE#1885]) -> [DMESG-WARN][230] ([Intel XE#3468])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@core_hotunplug@hotrebind-lateclose.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@core_hotunplug@hotrebind-lateclose.html
* igt@core_hotunplug@unplug-rescan:
- shard-dg2-set2: [DMESG-WARN][231] ([Intel XE#3468]) -> [SKIP][232] ([Intel XE#1885])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@core_hotunplug@unplug-rescan.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@core_hotunplug@unplug-rescan.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][233] ([Intel XE#2423] / [i915#2575]) -> [SKIP][234] ([Intel XE#623])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: [SKIP][235] ([Intel XE#873]) -> [SKIP][236] ([Intel XE#2423])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_async_flips@invalid-async-flip.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-bmg: [SKIP][237] ([Intel XE#2385]) -> [SKIP][238] ([Intel XE#2423])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: [SKIP][239] ([Intel XE#2370]) -> [SKIP][240] ([Intel XE#2423])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [DMESG-WARN][241] ([Intel XE#3468]) -> [DMESG-FAIL][242] ([Intel XE#3468])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][243] ([Intel XE#316]) -> [SKIP][244] ([Intel XE#2136] / [Intel XE#2351])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: [SKIP][245] ([Intel XE#2136]) -> [SKIP][246] ([Intel XE#2327]) +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-bmg: [DMESG-FAIL][247] ([Intel XE#3468]) -> [SKIP][248] ([Intel XE#2136]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_big_fb@linear-64bpp-rotate-0.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][249] ([Intel XE#316]) -> [SKIP][250] ([Intel XE#2136]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-bmg: [DMESG-WARN][251] ([Intel XE#3468]) -> [SKIP][252] ([Intel XE#2136])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-180:
- shard-dg2-set2: [INCOMPLETE][253] ([Intel XE#1727] / [Intel XE#3225] / [Intel XE#402]) -> [SKIP][254] ([Intel XE#2136])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][255] ([Intel XE#2327]) -> [SKIP][256] ([Intel XE#2136]) +5 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][257] ([Intel XE#2136]) -> [SKIP][258] ([Intel XE#316]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][259] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][260] ([Intel XE#316])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][261] ([Intel XE#829]) -> [SKIP][262] ([Intel XE#2136] / [Intel XE#2351])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_big_fb@x-tiled-addfb-size-overflow.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_big_fb@x-tiled-addfb-size-overflow.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-bmg: [SKIP][263] ([Intel XE#2136]) -> [DMESG-FAIL][264] ([Intel XE#3468])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: [SKIP][265] ([Intel XE#829]) -> [SKIP][266] ([Intel XE#2136]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: [SKIP][267] ([Intel XE#1124]) -> [SKIP][268] ([Intel XE#2136]) +10 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][269] ([Intel XE#619]) -> [SKIP][270] ([Intel XE#2136] / [Intel XE#2351])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][271] ([Intel XE#610]) -> [SKIP][272] ([Intel XE#2136]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-bmg: [SKIP][273] ([Intel XE#2136]) -> [SKIP][274] ([Intel XE#610])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: [SKIP][275] ([Intel XE#2136]) -> [SKIP][276] ([Intel XE#1124]) +12 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][277] ([Intel XE#829]) -> [SKIP][278] ([Intel XE#1124])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][279] ([Intel XE#1124]) -> [SKIP][280] ([Intel XE#2136]) +10 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][281] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][282] ([Intel XE#619])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][283] ([Intel XE#607]) -> [SKIP][284] ([Intel XE#2136])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][285] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][286] ([Intel XE#1124]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][287] ([Intel XE#2136]) -> [SKIP][288] ([Intel XE#1124]) +5 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [SKIP][289] ([Intel XE#2423] / [i915#2575]) -> [SKIP][290] ([Intel XE#367]) +4 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: [SKIP][291] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][292] ([Intel XE#2423]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][293] ([Intel XE#2423] / [i915#2575]) -> [SKIP][294] ([Intel XE#2191])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
- shard-bmg: [SKIP][295] ([Intel XE#2423]) -> [SKIP][296] ([Intel XE#2314] / [Intel XE#2894])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: [SKIP][297] ([Intel XE#3189]) -> [SKIP][298] ([Intel XE#2314] / [Intel XE#2894])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][299] ([Intel XE#2191]) -> [SKIP][300] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][301] ([Intel XE#367]) -> [SKIP][302] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][303] ([Intel XE#2423]) -> [SKIP][304] ([Intel XE#367]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-bmg: [SKIP][305] ([Intel XE#367]) -> [SKIP][306] ([Intel XE#2423])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][307] -> [SKIP][308] ([Intel XE#2136]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][309] ([Intel XE#2136]) -> [SKIP][310] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
- shard-bmg: [SKIP][311] ([Intel XE#2136]) -> [SKIP][312] ([Intel XE#2887]) +20 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][314] ([Intel XE#455] / [Intel XE#787])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][315] ([Intel XE#2907]) -> [SKIP][316] ([Intel XE#2136]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][317] ([Intel XE#2136]) -> [SKIP][318] ([Intel XE#2907]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][319] ([Intel XE#829]) -> [SKIP][320] ([Intel XE#2136]) +5 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
- shard-bmg: [SKIP][321] ([Intel XE#3282]) -> [SKIP][322] ([Intel XE#2887])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][323] ([Intel XE#3442]) -> [SKIP][324] ([Intel XE#2136])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: [SKIP][325] ([Intel XE#3432]) -> [SKIP][326] ([Intel XE#2136]) +2 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][327] ([Intel XE#2136]) -> [SKIP][328] ([Intel XE#3432]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#2652] / [Intel XE#787]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][331] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][332] ([Intel XE#2136]) +10 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][333] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][334] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][335] ([Intel XE#2887]) -> [SKIP][336] ([Intel XE#2136]) +18 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: [SKIP][337] ([Intel XE#3189]) -> [SKIP][338] ([Intel XE#2724])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_cdclk@mode-transition.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: [SKIP][339] ([Intel XE#2724]) -> [SKIP][340] ([Intel XE#2136]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg2-set2: [SKIP][341] ([Intel XE#314]) -> [SKIP][342] ([Intel XE#2136] / [Intel XE#2351])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: [SKIP][343] ([Intel XE#2423]) -> [SKIP][344] ([Intel XE#2325])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_chamelium_color@ctm-0-25.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_chamelium_color@ctm-0-25.html
- shard-dg2-set2: [SKIP][345] ([Intel XE#306]) -> [SKIP][346] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_chamelium_color@ctm-0-25.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2-set2: [SKIP][347] ([Intel XE#2423] / [i915#2575]) -> [SKIP][348] ([Intel XE#306])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_chamelium_color@ctm-max.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: [SKIP][349] ([Intel XE#2325]) -> [SKIP][350] ([Intel XE#2423])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_chamelium_color@gamma.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2-set2: [SKIP][351] ([Intel XE#373]) -> [SKIP][352] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: [SKIP][353] ([Intel XE#2423]) -> [SKIP][354] ([Intel XE#2252]) +12 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: [SKIP][355] ([Intel XE#2252]) -> [SKIP][356] ([Intel XE#2423]) +10 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][357] ([Intel XE#2423] / [i915#2575]) -> [SKIP][358] ([Intel XE#373]) +6 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][359] ([Intel XE#2390]) -> [SKIP][360] ([Intel XE#2423]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_content_protection@dp-mst-type-1.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: [SKIP][361] ([Intel XE#307]) -> [SKIP][362] ([Intel XE#2423] / [i915#2575])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_content_protection@dp-mst-type-1.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: [INCOMPLETE][363] ([Intel XE#2715] / [Intel XE#3468]) -> [SKIP][364] ([Intel XE#2423])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_content_protection@legacy.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-dg2-set2: [FAIL][365] ([Intel XE#1178]) -> [SKIP][366] ([Intel XE#2423] / [i915#2575])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_content_protection@srm.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_content_protection@srm.html
- shard-bmg: [FAIL][367] ([Intel XE#1178]) -> [SKIP][368] ([Intel XE#2423])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_content_protection@srm.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-bmg: [SKIP][369] ([Intel XE#2341]) -> [SKIP][370] ([Intel XE#2423])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_content_protection@type1.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][371] ([Intel XE#1188]) -> [SKIP][372] ([Intel XE#2423] / [i915#2575])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_content_protection@uevent.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: [SKIP][373] ([Intel XE#2423]) -> [SKIP][374] ([Intel XE#2320]) +7 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: [SKIP][375] ([Intel XE#2320]) -> [SKIP][376] ([Intel XE#2423]) +3 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][377] ([Intel XE#308]) -> [SKIP][378] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: [SKIP][379] ([Intel XE#2423]) -> [SKIP][380] ([Intel XE#2321]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-bmg: [SKIP][381] ([Intel XE#3189]) -> [SKIP][382] ([Intel XE#2320])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: [SKIP][383] ([Intel XE#2321]) -> [SKIP][384] ([Intel XE#2423]) +2 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2-set2: [SKIP][385] ([Intel XE#2423] / [i915#2575]) -> [SKIP][386] ([Intel XE#455]) +7 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x128:
- shard-bmg: [DMESG-FAIL][387] ([Intel XE#3468]) -> [SKIP][388] ([Intel XE#2423])
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-128x128.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-128x128.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-bmg: [SKIP][389] ([Intel XE#2423]) -> [SKIP][390] ([Intel XE#2291])
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][391] ([Intel XE#323]) -> [SKIP][392] ([Intel XE#2423] / [i915#2575])
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-bmg: [SKIP][393] ([Intel XE#2286]) -> [SKIP][394] ([Intel XE#2423])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][395] ([Intel XE#2291]) -> [DMESG-WARN][396] ([Intel XE#877])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [SKIP][397] ([Intel XE#2423]) -> [DMESG-WARN][398] ([Intel XE#877])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [SKIP][399] ([Intel XE#2291]) -> [SKIP][400] ([Intel XE#2423]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [SKIP][401] ([Intel XE#3189]) -> [SKIP][402] ([Intel XE#2423]) +6 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: [SKIP][403] ([Intel XE#2423]) -> [SKIP][404] ([Intel XE#2286])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][405] ([Intel XE#3070]) -> [SKIP][406] ([Intel XE#2136])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: [SKIP][407] ([Intel XE#2351]) -> [SKIP][408] ([Intel XE#455])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_dsc@dsc-basic.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: [SKIP][409] ([Intel XE#3189]) -> [SKIP][410] ([Intel XE#2244])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2-set2: [SKIP][411] ([Intel XE#2136]) -> [SKIP][412] ([Intel XE#455]) +4 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][413] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][414] ([Intel XE#455]) +1 other test skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: [SKIP][415] ([Intel XE#2136]) -> [SKIP][416] ([Intel XE#2244])
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: [SKIP][417] ([Intel XE#2244]) -> [SKIP][418] ([Intel XE#2136]) +2 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [SKIP][419] ([Intel XE#2136]) -> [FAIL][420] ([Intel XE#1695])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: [SKIP][421] ([Intel XE#2423]) -> [SKIP][422] ([Intel XE#2373])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_feature_discovery@display-3x.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_feature_discovery@display-3x.html
- shard-dg2-set2: [SKIP][423] ([Intel XE#703]) -> [SKIP][424] ([Intel XE#2423] / [i915#2575])
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_feature_discovery@display-3x.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: [SKIP][425] ([Intel XE#2423]) -> [SKIP][426] ([Intel XE#1138])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_feature_discovery@display-4x.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][427] ([Intel XE#2423] / [i915#2575]) -> [SKIP][428] ([Intel XE#1137])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html
- shard-bmg: [SKIP][429] ([Intel XE#2423]) -> [SKIP][430] ([Intel XE#2375])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_feature_discovery@dp-mst.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][431] ([Intel XE#1135]) -> [SKIP][432] ([Intel XE#2423] / [i915#2575])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_feature_discovery@psr1.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [FAIL][433] ([Intel XE#2882]) -> [SKIP][434] ([Intel XE#2316])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
- shard-dg2-set2: [SKIP][435] ([Intel XE#2423] / [i915#2575]) -> [FAIL][436] ([Intel XE#301])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][437] ([Intel XE#3189]) -> [SKIP][438] ([Intel XE#2316])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-bmg: [SKIP][439] ([Intel XE#2423]) -> [SKIP][440] ([Intel XE#2316]) +1 other test skip
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][441] ([Intel XE#2316]) -> [SKIP][442] ([Intel XE#2423]) +1 other test skip
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-dpms-off-vs-modeset:
- shard-bmg: [DMESG-WARN][443] -> [SKIP][444] ([Intel XE#2423])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-rmfb:
- shard-bmg: [SKIP][445] ([Intel XE#2423]) -> [DMESG-WARN][446] ([Intel XE#3468]) +2 other tests dmesg-warn
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_flip@flip-vs-rmfb.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][447] ([Intel XE#2597]) -> [SKIP][448] ([Intel XE#2423])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-bmg: [INCOMPLETE][449] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][450] ([Intel XE#2136])
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: [SKIP][451] ([Intel XE#2136]) -> [SKIP][452] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][453] ([Intel XE#455]) -> [SKIP][454] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-bmg: [SKIP][455] ([Intel XE#3189]) -> [SKIP][456] ([Intel XE#2293] / [Intel XE#2380])
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-bmg: [SKIP][457] ([Intel XE#2136]) -> [INCOMPLETE][458] ([Intel XE#1727] / [Intel XE#3468])
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: [SKIP][459] ([Intel XE#2380]) -> [SKIP][460] ([Intel XE#2136])
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-bmg: [SKIP][461] ([Intel XE#3189]) -> [SKIP][462] ([Intel XE#2136]) +6 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: [SKIP][463] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][464] ([Intel XE#2136]) +6 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-set2: [SKIP][465] ([Intel XE#455]) -> [SKIP][466] ([Intel XE#2136]) +3 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-bmg: [SKIP][467] ([Intel XE#540]) -> [SKIP][468] ([Intel XE#2423])
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_force_connector_basic@force-connector-state.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_force_connector_basic@force-connector-state.html
- shard-dg2-set2: [SKIP][469] ([Intel XE#540]) -> [SKIP][470] ([Intel XE#2423] / [i915#2575])
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_force_connector_basic@force-connector-state.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][471] ([i915#5274]) -> [SKIP][472] ([Intel XE#2423] / [i915#2575])
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][473] ([Intel XE#651]) -> [SKIP][474] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][475] ([Intel XE#2312]) -> [SKIP][476] ([Intel XE#2311]) +6 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][477] ([Intel XE#2136]) -> [SKIP][478] ([Intel XE#2311]) +32 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][479] ([Intel XE#2136]) -> [FAIL][480] ([Intel XE#2333]) +11 other tests fail
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [INCOMPLETE][481] ([Intel XE#1727]) -> [FAIL][482] ([Intel XE#2333])
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [FAIL][483] ([Intel XE#2333]) -> [SKIP][484] ([Intel XE#2136]) +16 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [DMESG-FAIL][485] ([Intel XE#3468]) -> [FAIL][486] ([Intel XE#2333]) +3 other tests fail
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [FAIL][487] ([Intel XE#2333]) -> [SKIP][488] ([Intel XE#2312]) +2 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][489] ([Intel XE#2312]) -> [FAIL][490] ([Intel XE#2333])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][491] ([Intel XE#2136]) -> [SKIP][492] ([Intel XE#2312]) +8 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [FAIL][493] ([Intel XE#2333]) -> [DMESG-FAIL][494] ([Intel XE#3468]) +6 other tests dmesg-fail
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][495] ([Intel XE#651]) -> [SKIP][496] ([Intel XE#2136]) +19 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][497] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][498] ([Intel XE#651]) +8 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][499] ([Intel XE#2312]) -> [SKIP][500] ([Intel XE#2136]) +4 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][501] ([Intel XE#2311]) -> [SKIP][502] ([Intel XE#2136]) +30 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][503] ([Intel XE#2311]) -> [SKIP][504] ([Intel XE#2312]) +5 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][505] ([Intel XE#3189]) -> [SKIP][506] ([Intel XE#2311]) +2 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][507] -> [SKIP][508] ([Intel XE#651]) +1 other test skip
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: [SKIP][509] ([Intel XE#2136]) -> [SKIP][510] ([Intel XE#651]) +11 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][511] ([Intel XE#658]) -> [SKIP][512] ([Intel XE#2136] / [Intel XE#2351])
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][513] ([Intel XE#2136]) -> [SKIP][514] ([Intel XE#653]) +24 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][515] -> [SKIP][516] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][517] ([Intel XE#2136]) -> [SKIP][518] ([Intel XE#2313]) +31 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][519] ([Intel XE#2313]) -> [SKIP][520] ([Intel XE#2312]) +7 other tests skip
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][521] ([Intel XE#3189]) -> [SKIP][522] ([Intel XE#2313]) +1 other test skip
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: [SKIP][523] ([Intel XE#2352]) -> [SKIP][524] ([Intel XE#2136])
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: [SKIP][525] ([Intel XE#2136]) -> [SKIP][526] ([Intel XE#2350])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][527] ([Intel XE#653]) -> [SKIP][528] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][529] ([Intel XE#2312]) -> [SKIP][530] ([Intel XE#2313]) +1 other test skip
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][531] ([Intel XE#2313]) -> [SKIP][532] ([Intel XE#2136]) +31 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][533] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][534] ([Intel XE#653]) +6 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg2-set2: [SKIP][535] ([Intel XE#653]) -> [SKIP][536] ([Intel XE#2136]) +35 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-suspend.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_getfb@getfb-repeated-different-handles:
- shard-bmg: [SKIP][537] -> [SKIP][538] ([Intel XE#2423])
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_getfb@getfb-repeated-different-handles.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_getfb@getfb-repeated-different-handles.html
- shard-dg2-set2: [SKIP][539] ([Intel XE#687]) -> [SKIP][540] ([Intel XE#2423] / [i915#2575])
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_getfb@getfb-repeated-different-handles.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_getfb@getfb-repeated-different-handles.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [FAIL][541] -> [SKIP][542] ([Intel XE#2423] / [i915#2575])
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][543] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][544] ([Intel XE#2423])
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: [SKIP][545] ([Intel XE#2136]) -> [SKIP][546] ([Intel XE#2934])
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg2-set2: [SKIP][547] ([Intel XE#2136]) -> [SKIP][548] ([Intel XE#2925])
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_joiner@basic-force-ultra-joiner.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][549] ([Intel XE#346]) -> [SKIP][550] ([Intel XE#2136])
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: [SKIP][551] ([Intel XE#2934]) -> [SKIP][552] ([Intel XE#2136])
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][553] ([Intel XE#2423]) -> [SKIP][554] ([Intel XE#2501])
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: [SKIP][555] ([Intel XE#356]) -> [SKIP][556] ([Intel XE#2423] / [i915#2575])
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [FAIL][557] ([Intel XE#616]) -> [SKIP][558] ([Intel XE#2423] / [i915#2575])
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_plane_cursor@viewport.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: [SKIP][559] ([Intel XE#2423]) -> [SKIP][560] ([Intel XE#2393])
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: [SKIP][561] ([Intel XE#2393]) -> [SKIP][562] ([Intel XE#2423])
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_plane_lowres@tiling-yf.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: [SKIP][563] ([Intel XE#455]) -> [SKIP][564] ([Intel XE#2423] / [i915#2575]) +10 other tests skip
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_plane_multiple@tiling-y.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: [SKIP][565] ([Intel XE#2493]) -> [SKIP][566] ([Intel XE#2423]) +1 other test skip
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [SKIP][567] ([Intel XE#2423] / [i915#2575]) -> [FAIL][568] ([Intel XE#361])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-bmg: [SKIP][569] ([Intel XE#3189]) -> [SKIP][570] ([Intel XE#2763])
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-bmg: [SKIP][571] ([Intel XE#2763]) -> [SKIP][572] ([Intel XE#2423]) +1 other test skip
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2-set2: [DMESG-WARN][573] ([Intel XE#1727]) -> [SKIP][574] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][575] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][576] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][577] ([Intel XE#2423] / [i915#2575]) -> [SKIP][578] ([Intel XE#2763] / [Intel XE#455])
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
- shard-bmg: [SKIP][579] ([Intel XE#2423]) -> [SKIP][580] ([Intel XE#2763]) +1 other test skip
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][581] ([Intel XE#870]) -> [SKIP][582] ([Intel XE#2136]) +1 other test skip
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][583] ([Intel XE#2136]) -> [SKIP][584] ([Intel XE#2938])
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-bmg: [SKIP][585] ([Intel XE#870]) -> [SKIP][586] ([Intel XE#2136])
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_pm_backlight@fade.html
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: [SKIP][587] ([Intel XE#2391]) -> [SKIP][588] ([Intel XE#2136])
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][589] ([Intel XE#1129]) -> [SKIP][590] ([Intel XE#2136])
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
- shard-bmg: [SKIP][591] ([Intel XE#2136]) -> [SKIP][592] ([Intel XE#2392])
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: [SKIP][593] ([Intel XE#3309]) -> [SKIP][594] ([Intel XE#2136])
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [FAIL][595] ([Intel XE#1430]) -> [SKIP][596] ([Intel XE#2136])
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_pm_dc@dc6-dpms.html
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: [SKIP][597] ([Intel XE#2136]) -> [SKIP][598] ([Intel XE#2505])
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_pm_dc@deep-pkgc.html
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: [SKIP][599] ([Intel XE#1439]) -> [SKIP][600] ([Intel XE#2446])
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [SKIP][601] -> [SKIP][602] ([Intel XE#2446])
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp.html
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][603] ([Intel XE#3189]) -> [SKIP][604] ([Intel XE#1489])
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][605] ([Intel XE#2136]) -> [SKIP][606] ([Intel XE#1489]) +7 other tests skip
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][607] ([Intel XE#2136]) -> [SKIP][608] ([Intel XE#1489]) +10 other tests skip
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][609] ([Intel XE#1489]) -> [SKIP][610] ([Intel XE#2136]) +4 other tests skip
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][611] ([Intel XE#1489]) -> [SKIP][612] ([Intel XE#2136]) +10 other tests skip
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][613] ([Intel XE#1122]) -> [SKIP][614] ([Intel XE#2136]) +1 other test skip
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html
- shard-bmg: [SKIP][615] ([Intel XE#2387]) -> [SKIP][616] ([Intel XE#2136])
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr2_su@page_flip-nv12.html
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: [SKIP][617] ([Intel XE#2136]) -> [SKIP][618] ([Intel XE#2387])
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][619] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][620] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][621] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][622] ([Intel XE#2136]) +12 other tests skip
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr-suspend:
- shard-bmg: [SKIP][623] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][624] ([Intel XE#2136]) +15 other tests skip
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr@fbc-psr-suspend.html
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: [SKIP][625] ([Intel XE#2136]) -> [SKIP][626] ([Intel XE#2234] / [Intel XE#2850]) +16 other tests skip
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-plane-move.html
[626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][627] -> [SKIP][628] ([Intel XE#2136]) +8 other tests skip
[627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-render.html
[628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][629] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][630] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_psr@psr-dpms.html
[630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][631] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][632] ([Intel XE#2351])
[631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_psr@psr-sprite-plane-onoff.html
[632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][633] ([Intel XE#2136]) -> [SKIP][634] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip
[633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_psr@psr2-cursor-plane-onoff.html
[634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg2-set2: [SKIP][635] -> [SKIP][636] ([Intel XE#2850] / [Intel XE#929])
[635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_psr@psr2-primary-blt.html
[636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_psr@psr2-primary-blt.html
- shard-bmg: [SKIP][637] ([Intel XE#3189]) -> [SKIP][638] ([Intel XE#2234] / [Intel XE#2850])
[637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr@psr2-primary-blt.html
[638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_psr@psr2-primary-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: [SKIP][639] ([Intel XE#2414]) -> [SKIP][640] ([Intel XE#2136])
[639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: [SKIP][641] ([Intel XE#3414]) -> [SKIP][642] ([Intel XE#2423]) +2 other tests skip
[641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-270.html
[642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][643] ([Intel XE#2423] / [i915#2575]) -> [SKIP][644] ([Intel XE#3414]) +2 other tests skip
[643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-bmg: [SKIP][645] ([Intel XE#2423]) -> [SKIP][646] ([Intel XE#3414])
[645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: [SKIP][647] ([Intel XE#2330]) -> [SKIP][648] ([Intel XE#2423])
[647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: [SKIP][649] ([Intel XE#3189]) -> [SKIP][650] ([Intel XE#2413])
[649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html
[650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-bmg: [SKIP][651] ([Intel XE#2423]) -> [SKIP][652] ([Intel XE#2413]) +1 other test skip
[651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-none.html
[652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: [SKIP][653] ([Intel XE#1435]) -> [SKIP][654] ([Intel XE#2423])
[653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_setmode@basic-clone-single-crtc.html
[654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][655] ([Intel XE#2426]) -> [SKIP][656] ([Intel XE#2423])
[655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: [SKIP][657] ([Intel XE#1500]) -> [SKIP][658] ([Intel XE#2423] / [i915#2575])
[657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: [SKIP][659] ([Intel XE#2423]) -> [SKIP][660] ([Intel XE#2450])
[659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
[660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: [INCOMPLETE][661] ([Intel XE#1034]) -> [DMESG-WARN][662] ([Intel XE#3468])
[661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_vblank@ts-continuation-dpms-suspend.html
[662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-modeset-rpm:
- shard-dg2-set2: [SKIP][663] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][664] ([Intel XE#1727] / [Intel XE#3468])
[663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_vblank@ts-continuation-modeset-rpm.html
[664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_vblank@ts-continuation-modeset-rpm.html
* igt@kms_vblank@wait-forked-busy-hang:
- shard-bmg: [SKIP][665] ([Intel XE#2423]) -> [DMESG-FAIL][666] ([Intel XE#3468])
[665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_vblank@wait-forked-busy-hang.html
[666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@kms_vblank@wait-forked-busy-hang.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: [SKIP][667] ([Intel XE#2423]) -> [SKIP][668] ([Intel XE#1499]) +1 other test skip
[667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_vrr@flip-suspend.html
[668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: [SKIP][669] -> [SKIP][670] ([Intel XE#2423] / [i915#2575]) +10 other tests skip
[669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_vrr@flipline.html
[670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-bmg: [SKIP][671] ([Intel XE#2168]) -> [SKIP][672] ([Intel XE#2423])
[671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_vrr@lobf.html
[672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_vrr@lobf.html
- shard-dg2-set2: [SKIP][673] ([Intel XE#2423] / [i915#2575]) -> [SKIP][674] ([Intel XE#2168])
[673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_vrr@lobf.html
[674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: [SKIP][675] ([Intel XE#1499]) -> [SKIP][676] ([Intel XE#2423]) +2 other tests skip
[675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html
[676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: [SKIP][677] ([Intel XE#2423]) -> [SKIP][678] ([Intel XE#756]) +1 other test skip
[677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_writeback@writeback-invalid-parameters.html
[678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: [SKIP][679] ([Intel XE#756]) -> [SKIP][680] ([Intel XE#2423]) +1 other test skip
[679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_writeback@writeback-pixel-formats.html
[680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2-set2: [SKIP][681] ([Intel XE#756]) -> [SKIP][682] ([Intel XE#2423] / [i915#2575])
[681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_writeback@writeback-pixel-formats.html
[682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][683] ([Intel XE#2423] / [i915#2575]) -> [SKIP][684] ([Intel XE#1091] / [Intel XE#2849])
[683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html
[684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-bmg: [SKIP][685] ([Intel XE#2423]) -> [SKIP][686] ([Intel XE#1091] / [Intel XE#2849])
[685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
[686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][687] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][688] ([Intel XE#1130])
[687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][689] ([Intel XE#1126]) -> [SKIP][690] ([Intel XE#1130]) +1 other test skip
[689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: [SKIP][691] ([Intel XE#1130]) -> [SKIP][692] ([Intel XE#2504])
[691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_create@multigpu-create-massive-size.html
[692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-client-th:
- shard-dg2-set2: [SKIP][693] ([Intel XE#1130]) -> [SKIP][694] ([Intel XE#2905]) +11 other tests skip
[693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_eudebug@basic-client-th.html
[694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug@basic-vm-bind:
- shard-dg2-set2: [SKIP][695] ([Intel XE#2905]) -> [SKIP][696] ([Intel XE#1130]) +15 other tests skip
[695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_eudebug@basic-vm-bind.html
[696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: [SKIP][697] ([Intel XE#1130]) -> [SKIP][698] ([Intel XE#2905]) +12 other tests skip
[697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
[698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@pagefault-write:
- shard-bmg: [SKIP][699] -> [SKIP][700] ([Intel XE#1130])
[699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@xe_eudebug_online@pagefault-write.html
[700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
- shard-bmg: [SKIP][701] ([Intel XE#2905]) -> [SKIP][702] ([Intel XE#1130]) +12 other tests skip
[701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html
[702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: [TIMEOUT][703] ([Intel XE#1473]) -> [SKIP][704] ([Intel XE#1130])
[703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-large.html
[704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [SKIP][705] ([Intel XE#1130]) -> [TIMEOUT][706] ([Intel XE#1473])
[705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html
[706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_balancer@no-exec-cm-virtual-basic:
- shard-bmg: [SKIP][707] ([Intel XE#1130]) -> [DMESG-WARN][708] ([Intel XE#1727]) +2 other tests dmesg-warn
[707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_exec_balancer@no-exec-cm-virtual-basic.html
[708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@xe_exec_balancer@no-exec-cm-virtual-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-bmg: [SKIP][709] ([Intel XE#1130]) -> [SKIP][710] ([Intel XE#2322]) +10 other tests skip
[709]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
[710]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: [SKIP][711] ([Intel XE#2322]) -> [SKIP][712] ([Intel XE#1130]) +12 other tests skip
[711]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-rebind.html
[712]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-basic-imm:
- shard-dg2-set2: [SKIP][713] ([Intel XE#288]) -> [SKIP][714] ([Intel XE#1130]) +34 other tests skip
[713]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@xe_exec_fault_mode@once-basic-imm.html
[714]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@xe_exec_fault_mode@once-basic-imm.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch:
- shard-dg2-set2: [SKIP][715] ([Intel XE#1130]) -> [SKIP][716] ([Intel XE#288]) +22 other tests skip
[715]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
[716]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm:
- shard-bmg: [DMESG-WARN][717] ([Intel XE#3468]) -> [SKIP][718] ([Intel XE#1130]) +5 other tests skip
[717]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm.html
[718]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][719] ([Intel XE#1130]) -> [SKIP][720] ([Intel XE#2360]) +1 other test skip
[719]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[720]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [SKIP][721] ([Intel XE#1130]) -> [DMESG-WARN][722] ([Intel XE#3468]) +3 other tests dmesg-warn
[721]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[722]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-bmg: [SKIP][723] ([Intel XE#1130]) -> [DMESG-WARN][724] ([Intel XE#3343] / [Intel XE#3468])
[723]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[724]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-bmg: [SKIP][725] ([Intel XE#1130]) -> [DMESG-WARN][726] ([Intel XE#3467])
[725]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[726]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-dg2-set2: [DMESG-WARN][727] ([Intel XE#3343]) -> [SKIP][728] ([Intel XE#1130])
[727]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[728]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [DMESG-FAIL][729] ([Intel XE#3467] / [Intel XE#3468]) -> [SKIP][730] ([Intel XE#1130])
[729]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[730]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [SKIP][731] ([Intel XE#1130]) -> [FAIL][732] ([Intel XE#3499])
[731]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[732]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: [FAIL][733] ([Intel XE#3499]) -> [SKIP][734] ([Intel XE#1130]) +1 other test skip
[733]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[734]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-dg2-set2: [SKIP][735] ([Intel XE#1130]) -> [DMESG-WARN][736] ([Intel XE#3467]) +1 other test dmesg-warn
[735]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[736]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-dg2-set2: [DMESG-WARN][737] ([Intel XE#3467]) -> [SKIP][738] ([Intel XE#1130]) +2 other tests skip
[737]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[738]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-bmg: [DMESG-WARN][739] ([Intel XE#3467]) -> [DMESG-WARN][740] ([Intel XE#3467] / [Intel XE#3468])
[739]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[740]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_mmap@small-bar:
- shard-bmg: [SKIP][741] ([Intel XE#1130]) -> [SKIP][742] ([Intel XE#586])
[741]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_mmap@small-bar.html
[742]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-6/igt@xe_mmap@small-bar.html
- shard-dg2-set2: [SKIP][743] ([Intel XE#1130]) -> [SKIP][744] ([Intel XE#512])
[743]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_mmap@small-bar.html
[744]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_mmap@small-bar.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [FAIL][745] ([Intel XE#3546]) -> [DMESG-WARN][746] ([Intel XE#3467])
[745]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_module_load@many-reload.html
[746]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [FAIL][747] -> [DMESG-WARN][748] ([Intel XE#3467])
[747]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_module_load@reload-no-display.html
[748]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@xe_module_load@reload-no-display.html
- shard-dg2-set2: [DMESG-FAIL][749] ([Intel XE#3467]) -> [FAIL][750] ([Intel XE#3546])
[749]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_module_load@reload-no-display.html
[750]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@invalid-oa-format-id:
- shard-dg2-set2: [SKIP][751] ([Intel XE#1130]) -> [SKIP][752] ([Intel XE#3573]) +6 other tests skip
[751]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@xe_oa@invalid-oa-format-id.html
[752]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-435/igt@xe_oa@invalid-oa-format-id.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: [SKIP][753] ([Intel XE#2248]) -> [SKIP][754] ([Intel XE#1130])
[753]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html
[754]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][755] ([Intel XE#3573]) -> [SKIP][756] ([Intel XE#1130]) +8 other tests skip
[755]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_oa@whitelisted-registers-userspace-config.html
[756]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][757] ([Intel XE#1337]) -> [SKIP][758] ([Intel XE#1130])
[757]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html
[758]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: [SKIP][759] ([Intel XE#1130]) -> [SKIP][760] ([Intel XE#1420])
[759]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_pat@pat-index-xehpc.html
[760]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: [SKIP][761] ([Intel XE#2236]) -> [SKIP][762] ([Intel XE#1130])
[761]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_pat@pat-index-xelpg.html
[762]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
- shard-dg2-set2: [SKIP][763] ([Intel XE#979]) -> [SKIP][764] ([Intel XE#1130])
[763]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
[764]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [FAIL][765] ([Intel XE#1173]) -> [SKIP][766] ([Intel XE#1061])
[765]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@xe_peer2peer@read.html
[766]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: [SKIP][767] ([Intel XE#2284]) -> [SKIP][768] ([Intel XE#1130])
[767]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html
[768]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][769] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][770] ([Intel XE#1130]) +1 other test skip
[769]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_pm@s2idle-d3cold-basic-exec.html
[770]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [DMESG-WARN][771] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][772] ([Intel XE#1130]) +1 other test skip
[771]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@xe_pm@s4-basic.html
[772]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-exec-after:
- shard-bmg: [SKIP][773] ([Intel XE#1130]) -> [DMESG-WARN][774] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[773]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_pm@s4-exec-after.html
[774]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-3/igt@xe_pm@s4-exec-after.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: [SKIP][775] ([Intel XE#944]) -> [SKIP][776] ([Intel XE#1130]) +2 other tests skip
[775]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@xe_query@multigpu-query-cs-cycles.html
[776]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][777] ([Intel XE#944]) -> [SKIP][778] ([Intel XE#1130]) +3 other tests skip
[777]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@xe_query@multigpu-query-engines.html
[778]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: [SKIP][779] ([Intel XE#1130]) -> [SKIP][780] ([Intel XE#944]) +2 other tests skip
[779]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[780]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: [SKIP][781] ([Intel XE#1130]) -> [SKIP][782] ([Intel XE#944]) +1 other test skip
[781]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@xe_query@multigpu-query-topology.html
[782]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@xe_query@multigpu-query-topology.html
* igt@xe_vm@large-binds-4194304:
- shard-dg2-set2: [DMESG-WARN][783] ([Intel XE#1727]) -> [SKIP][784] ([Intel XE#1130])
[783]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_vm@large-binds-4194304.html
[784]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-466/igt@xe_vm@large-binds-4194304.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [ABORT][785] -> [SKIP][786] ([Intel XE#1130])
[785]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.html
[786]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [SKIP][787] ([Intel XE#1130]) -> [ABORT][788] ([Intel XE#3075] / [Intel XE#3084])
[787]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html
[788]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/shard-dg2-436/igt@xe_wedged@wedged-mode-toggle.html
[Intel XE#1034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1034
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[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#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[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#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#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#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[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#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2958
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
[Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189
[Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#3282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3282
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3512
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[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#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/687
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8126 -> IGTPW_12202
* Linux: xe-2279-7cd4d1589e461d61330ec272c448bc6d1b9da35e -> xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198
IGTPW_12202: 12202
IGT_8126: 8126
xe-2279-7cd4d1589e461d61330ec272c448bc6d1b9da35e: 7cd4d1589e461d61330ec272c448bc6d1b9da35e
xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198: 739a2506c44a0be22cc842d2c625a05ed21c1198
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12202/index.html
[-- Attachment #2: Type: text/html, Size: 227144 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ i915.CI.BAT: success for Ignore more warns in xe_wedged tests (rev5)
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (6 preceding siblings ...)
2024-11-26 20:15 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-11-26 20:40 ` Patchwork
2024-11-26 21:50 ` ✗ i915.CI.Full: failure " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-11-26 20:40 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev5)
URL : https://patchwork.freedesktop.org/series/140511/
State : success
== Summary ==
CI Bug Log - changes from IGT_8126 -> IGTPW_12202
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12202 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [PASS][1] -> [FAIL][2] ([i915#12903])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
- fi-tgl-1115g4: [PASS][3] -> [FAIL][4] ([i915#12903])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [FAIL][5] ([i915#12903]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-rplp-1: [ABORT][7] -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/bat-rplp-1/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/bat-rplp-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-rplp-1: [ABORT][9] ([i915#9413]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/bat-rplp-1/igt@i915_selftest@live@gt_lrc.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/bat-rplp-1/igt@i915_selftest@live@gt_lrc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8126 -> IGTPW_12202
* Linux: CI_DRM_15747 -> CI_DRM_15749
CI-20190529: 20190529
CI_DRM_15747: 7cd4d1589e461d61330ec272c448bc6d1b9da35e @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15749: 739a2506c44a0be22cc842d2c625a05ed21c1198 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12202: 12202
IGT_8126: 8126
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/index.html
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ i915.CI.Full: failure for Ignore more warns in xe_wedged tests (rev5)
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (7 preceding siblings ...)
2024-11-26 20:40 ` ✓ i915.CI.BAT: success " Patchwork
@ 2024-11-26 21:50 ` Patchwork
2024-11-29 21:21 ` ✗ Xe.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev6) Patchwork
2024-11-30 6:06 ` ✗ Xe.CI.Full: " Patchwork
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-11-26 21:50 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev5)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15749_full -> IGTPW_12202_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12202_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12202_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_12202/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12202_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_getversion@all-cards:
- shard-dg2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-1/igt@core_getversion@all-cards.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@core_getversion@all-cards.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [PASS][3] -> [SKIP][4] +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-5/igt@device_reset@unbind-reset-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html
* igt@i915_selftest@live:
- shard-rkl: NOTRUN -> [DMESG-FAIL][5] +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-7/igt@i915_selftest@live.html
- shard-dg1: NOTRUN -> [ABORT][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@i915_selftest@live.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: NOTRUN -> [INCOMPLETE][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1:
- shard-mtlp: [PASS][8] -> [ABORT][9] +1 other test abort
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-mtlp-2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-mtlp: [PASS][10] -> [INCOMPLETE][11] +1 other test incomplete
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_pm_rpm@fences-dpms:
- shard-rkl: [PASS][12] -> [SKIP][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-rkl-4/igt@kms_pm_rpm@fences-dpms.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-2/igt@kms_pm_rpm@fences-dpms.html
* igt@perf_pmu@busy-accuracy-98:
- shard-dg2: NOTRUN -> [SKIP][14] +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@perf_pmu@busy-accuracy-98.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-mtlp: [DMESG-FAIL][15] ([i915#11627]) -> [DMESG-FAIL][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][17] ([i915#9519]) -> [SKIP][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
* igt@perf_pmu@busy-double-start:
- shard-dg2: [FAIL][19] ([i915#4349]) -> [SKIP][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-3/igt@perf_pmu@busy-double-start.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@perf_pmu@busy-double-start.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_hdr@brightness-with-hdr:
- {shard-dg2-9}: NOTRUN -> [SKIP][21]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html
Known issues
------------
Here are the changes found in IGTPW_12202_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8411])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8411]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-noreloc-keep-cache-simple:
- shard-snb: NOTRUN -> [SKIP][24] +133 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb7/igt@api_intel_bb@object-noreloc-keep-cache-simple.html
* igt@drm_fdinfo@busy-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#8414]) +13 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-8/igt@drm_fdinfo@busy-check-all@vecs1.html
* igt@fbdev@info:
- shard-dg2: [PASS][26] -> [SKIP][27] ([i915#1849] / [i915#2582])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-7/igt@fbdev@info.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@fbdev@info.html
* igt@fbdev@write:
- shard-dg2: [PASS][28] -> [SKIP][29] ([i915#2582])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-2/igt@fbdev@write.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@fbdev@write.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#9323])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][31] ([i915#12392])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-8/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#7697])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@gem_close_race@multigpu-basic-process.html
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#7697])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-5/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#7697])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#7697])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#6335])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#8562])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#8562])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#8562])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][40] ([i915#8562])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-10/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][41] ([i915#1099]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb2/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#8555]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-7/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#8555])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#5882]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#280])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-1/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#280])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-3/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#280])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-3/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#280])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4771])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-7/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4771]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#8555])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_capture@capture-invisible:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#6334]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-4/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#6334]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3281]) +9 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3281]) +11 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3281]) +12 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3281]) +10 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@gem_exec_schedule@reorder-wide.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4812]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s3-devices:
- shard-dg1: [PASS][62] -> [DMESG-WARN][63] ([i915#4423]) +1 other test dmesg-warn
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg1-18/igt@gem_exec_suspend@basic-s3-devices.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4860]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4860])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4860])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][67] ([i915#2190])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#12936])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#4613])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#4613]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-10/igt@gem_lmem_swapping@smem-oom.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4613])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-8/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: NOTRUN -> [TIMEOUT][73] ([i915#5493]) +1 other test timeout
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: NOTRUN -> [DMESG-WARN][74] ([i915#5493]) +1 other test dmesg-warn
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg2: [PASS][75] -> [SKIP][76] ([i915#12936]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-2/igt@gem_lmem_swapping@verify-ccs.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#12193]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-glk: NOTRUN -> [SKIP][78] ([i915#4613]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-glk4/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4565]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#284])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@gem_media_vme.html
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#284])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#284])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-2/igt@gem_media_vme.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4077]) +18 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4083]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@gem_mmap_wc@read.html
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4083])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4083]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-7/igt@gem_mmap_wc@write.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#3282]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3282]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-4/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#3282]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@gem_pwrite@basic-exhaustion.html
- shard-tglu: NOTRUN -> [WARN][90] ([i915#2658])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4270]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: NOTRUN -> [TIMEOUT][92] ([i915#12964])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-2/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#4270]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-tglu: [PASS][94] -> [SKIP][95] ([i915#4270])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-tglu-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3282]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#2575] / [i915#5190]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8428]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-3/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#5190] / [i915#8428]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4079]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4885])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-7/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4077]) +12 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiled_pread_pwrite:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4079])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@gem_tiled_pread_pwrite.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#4077]) +10 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-3/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#3297]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#3297])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@gem_userptr_blits@dmabuf-sync.html
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#3297])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#3297])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-17/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#3297] / [i915#4880])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#3297])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#3281] / [i915#3297])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#3297] / [i915#4958])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@sync-unmap:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#2575]) +88 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@gem_userptr_blits@sync-unmap.html
* igt@gem_vm_create@execbuf:
- shard-dg2: [PASS][114] -> [SKIP][115] ([i915#2575]) +150 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-4/igt@gem_vm_create@execbuf.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@gem_vm_create@execbuf.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#2527] / [i915#2856]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-8/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#2527]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-17/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#2856]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@gen9_exec_parse@unaligned-access.html
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#2527])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@gen9_exec_parse@unaligned-access.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#2856])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-3/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: NOTRUN -> [DMESG-WARN][122] ([i915#13029])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: NOTRUN -> [ABORT][123] ([i915#12817] / [i915#9820])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#8399])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][125] ([i915#2681]) +1 other test warn
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@reg-read-ioctl:
- shard-dg2: [PASS][126] -> [SKIP][127] ([i915#13014])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-2/igt@i915_pm_rpm@reg-read-ioctl.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@i915_pm_rpm@reg-read-ioctl.html
* igt@i915_pm_rpm@sysfs-read:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#13014])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@i915_pm_rpm@sysfs-read.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][129] ([i915#8346])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-5/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#11681])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-17/igt@i915_pm_rps@thresholds.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#6245])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-7/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#6245])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-2/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live@gt_mocs:
- shard-dg1: NOTRUN -> [ABORT][133] ([i915#9413])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@sanitycheck:
- shard-tglu: NOTRUN -> [ABORT][134] ([i915#13010]) +1 other test abort
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-4/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@mock@memory_region:
- shard-rkl: NOTRUN -> [DMESG-WARN][135] ([i915#9311]) +1 other test dmesg-warn
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][136] ([i915#7443])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#7707])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-4/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-legacy:
- shard-dg2: [PASS][138] -> [SKIP][139] ([i915#2575] / [i915#5190])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#4212])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#4212]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-17/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#8709]) +11 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#8709]) +7 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#8709]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#8709]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#8709]) +11 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#1769] / [i915#3555])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][148] ([i915#12964]) +13 other tests dmesg-warn
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: [PASS][149] -> [FAIL][150] ([i915#11808] / [i915#5956]) +1 other test fail
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-mtlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#5286]) +7 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#5286])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#5286]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5286]) +8 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#5286]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3638]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-dg2: [PASS][157] -> [SKIP][158] +19 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3638]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#4538] / [i915#5190]) +6 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#5190]) +6 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#6187]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#4538]) +6 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][164] +15 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#12313])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#12313])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#6095]) +54 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#12313])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#6095]) +88 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#6095]) +34 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#10307] / [i915#6095]) +146 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#6095]) +11 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#12313])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#6095]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#12313])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#12313]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#6095]) +149 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#7213] / [i915#9010]) +4 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_cdclk@mode-transition.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#3742])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#3742])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-9/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#3742]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#4087]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#7828]) +9 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-5/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#7828]) +5 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#7828]) +16 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#7828]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd.html
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#7828]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#7828]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][190] ([i915#7173])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#6944] / [i915#9424])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@kms_content_protection@lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#9424])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#9424])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#13049])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#13049])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#13049])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#13049]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#13049]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-8/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#13049]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8814]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8814]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][204] +13 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#9809]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-snb: [PASS][206] -> [FAIL][207] ([i915#2346])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#4103] / [i915#4213])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#9833])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][210] ([i915#12170])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][211] ([i915#11968])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#9723])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#9723])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9833])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555]) +5 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#12402])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#12402])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#8812])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8812])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#8812])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#3840])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#1839])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@kms_feature_discovery@display-4x.html
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#1839])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#9337])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-10/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#9337])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#9337])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#658])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_flip@2x-dpms-vs-vblank-race.html
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#9934]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#3637]) +8 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-3/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#8381]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#9934]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#3637]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9934]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#8381]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-8/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [PASS][239] -> [INCOMPLETE][240] ([i915#4839] / [i915#6113])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg1-13/igt@kms_flip@flip-vs-suspend.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-dg1: [PASS][241] -> [INCOMPLETE][242] ([i915#6113])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg1-13/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: [PASS][243] -> [FAIL][244] ([i915#11989]) +5 other tests fail
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-snb: [PASS][245] -> [FAIL][246] ([i915#11989]) +3 other tests fail
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb1/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][247] ([i915#11989])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][248] ([i915#11832] / [i915#11989])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#8813]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#2672]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8810] / [i915#8813])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +5 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#2587] / [i915#2672]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#2672]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8813])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8810]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555]) +5 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-rkl: [PASS][264] -> [DMESG-WARN][265] ([i915#12964]) +62 other tests dmesg-warn
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#8708]) +4 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2: [PASS][267] -> [FAIL][268] ([i915#6880])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#1825]) +25 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][270] +22 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-snb: [PASS][271] -> [SKIP][272] +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#1825]) +28 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#8708]) +22 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][275] -> [DMESG-FAIL][276] ([i915#12964]) +3 other tests dmesg-fail
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#5439])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#5439])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#10433] / [i915#3458])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][280] +46 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#5354]) +38 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#8708]) +18 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][283] +46 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#3023]) +14 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#3458]) +18 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][286] +82 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3458]) +11 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#6118])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +2 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#8228]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8228]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8228])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#12394])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#10656])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#12339])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#12339])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#12339])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#12339])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#1839])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-17/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#6301]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#6301])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-7/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#6301])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#8821])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][306] ([i915#8292])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#12247]) +4 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#12247]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- shard-dg2: [PASS][309] -> [SKIP][310] ([i915#2575] / [i915#9423]) +4 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-5/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-glk: NOTRUN -> [SKIP][311] +270 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-glk5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#12247]) +9 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#12247] / [i915#6953]) +2 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#12247]) +16 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#2575] / [i915#9423])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#12247]) +4 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#6953] / [i915#9423])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#12247]) +3 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][319] ([i915#12912])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#9340])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-rkl: [PASS][321] -> [SKIP][322] ([i915#12916])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-rkl-2/igt@kms_pm_rpm@basic-pci-d3-state.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-5/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#9519])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: [PASS][324] -> [SKIP][325] ([i915#9519]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][326] -> [SKIP][327] ([i915#12937])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#12937])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][329] -> [SKIP][330] ([i915#9519])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#9519])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#6524])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-5/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#6524])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-8/igt@kms_prime@d3hot.html
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#6524])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_prime@d3hot.html
- shard-dg2: NOTRUN -> [SKIP][335] ([Intel XE#3529])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#11520]) +4 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#9808])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#11520]) +7 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#11520]) +10 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk: NOTRUN -> [SKIP][340] ([i915#11520]) +7 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-glk1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#12316]) +4 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
- shard-snb: NOTRUN -> [SKIP][342] ([i915#11520]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#11520]) +4 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#11520]) +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#9683])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][346] ([i915#4348]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#9683]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][348] ([i915#9683]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#9683]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-9/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#9688]) +16 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#1072] / [i915#9732]) +26 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +13 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-4/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@pr-cursor-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#9732]) +5 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_psr@pr-cursor-mmap-gtt.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#1072] / [i915#9732]) +19 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][355] ([i915#9732]) +18 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-9/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][356] ([i915#9685]) +2 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#9685]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#9685]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#9685]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#9685])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][361] ([i915#5289])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#12755])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90.html
- shard-mtlp: NOTRUN -> [SKIP][363] ([i915#12755])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][364] ([i915#3555]) +5 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#3555]) +4 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@kms_scaling_modes@scaling-mode-none.html
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#3555] / [i915#5030] / [i915#9041])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-8/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#5030]) +2 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#5030] / [i915#9041])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk: NOTRUN -> [ABORT][369] ([i915#12231]) +1 other test abort
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-glk8/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][370] -> [FAIL][371] ([i915#5465]) +2 other tests fail
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-tglu-2/igt@kms_setmode@basic.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@kms_setmode@basic.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][372] ([i915#8623])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [PASS][373] -> [FAIL][374] ([i915#9196]) +1 other test fail
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][375] ([i915#9906]) +1 other test skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-12/igt@kms_vrr@max-min.html
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#9906])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-5/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-check-output:
- shard-tglu: NOTRUN -> [SKIP][377] ([i915#2437])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-8/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][378] ([i915#2437])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-glk8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#2437])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu-1: NOTRUN -> [SKIP][380] ([i915#2437] / [i915#9412])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][381] ([i915#2437] / [i915#9412])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][382] ([i915#2436])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][383] ([i915#7387])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@perf@global-sseu-config-invalid.html
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#7387])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-8/igt@perf@global-sseu-config-invalid.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#2435])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][386] ([i915#2433]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][387] ([i915#8850])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-10/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@enable-race:
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#12506]) +2 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@perf_pmu@enable-race.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][389] ([i915#12549] / [i915#6806]) +1 other test fail
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@invalid-init:
- shard-dg2: [PASS][390] -> [SKIP][391] ([i915#12506]) +5 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-5/igt@perf_pmu@invalid-init.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-11/igt@perf_pmu@invalid-init.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][392] ([i915#8516])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-14/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-mtlp: NOTRUN -> [FAIL][393] ([i915#4349]) +4 other tests fail
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-3/igt@perf_pmu@render-node-busy-idle@vcs1.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [WARN][394] ([i915#9351])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-5/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][395] ([i915#9351])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][396] ([i915#3708] / [i915#4077])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][397] ([i915#3708])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-7/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][398] ([i915#3291] / [i915#3708])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-rkl-1/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][399] ([i915#3291] / [i915#3708]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@prime_vgem@basic-write.html
- shard-dg1: NOTRUN -> [SKIP][400] ([i915#3708]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@prime_vgem@basic-write.html
- shard-mtlp: NOTRUN -> [SKIP][401] ([i915#10216] / [i915#3708])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-4/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][402] ([i915#3708] / [i915#4077])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#9917])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@core_getversion@basic:
- shard-dg2: [FAIL][404] ([i915#12866]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-11/igt@core_getversion@basic.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@core_getversion@basic.html
* igt@debugfs_test@read_all_entries_display_off:
- shard-mtlp: [ABORT][406] -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-mtlp-7/igt@debugfs_test@read_all_entries_display_off.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-6/igt@debugfs_test@read_all_entries_display_off.html
* igt@fbdev@eof:
- shard-dg2: [SKIP][408] ([i915#2582]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-11/igt@fbdev@eof.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-2/igt@fbdev@eof.html
* igt@gem_ctx_engines@execute-allforone:
- shard-dg2: [SKIP][410] ([i915#2575]) -> [PASS][411] +151 other tests pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-11/igt@gem_ctx_engines@execute-allforone.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-10/igt@gem_ctx_engines@execute-allforone.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][412] ([i915#12714] / [i915#5784]) -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg1-12/igt@gem_eio@unwedge-stress.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][414] ([i915#11713]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-tglu-8/igt@gem_exec_big@single.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-7/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [INCOMPLETE][416] ([i915#11441]) -> [PASS][417] +1 other test pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-4/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-dg2: [SKIP][418] ([i915#12936]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-11/igt@gem_lmem_swapping@heavy-multi.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-6/igt@gem_lmem_swapping@heavy-multi.html
* igt@i915_module_load@reload:
- shard-tglu: [ABORT][420] ([i915#13010]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-tglu-9/igt@i915_module_load@reload.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-tglu-2/igt@i915_module_load@reload.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][422] ([i915#9820]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-dg2: [SKIP][424] ([i915#13014]) -> [PASS][425] +1 other test pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-8/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][426] ([i915#7984]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-mtlp-8/igt@i915_power@sanity.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-mtlp-7/igt@i915_power@sanity.html
* igt@i915_selftest@perf@engine_cs:
- shard-dg2: [FAIL][428] ([i915#12867]) -> [PASS][429] +2 other tests pass
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-11/igt@i915_selftest@perf@engine_cs.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-7/igt@i915_selftest@perf@engine_cs.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-dg2: [WARN][430] -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg2-11/igt@i915_suspend@basic-s2idle-without-i915.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg2-5/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-snb: [FAIL][432] ([i915#2346]) -> [PASS][433] +1 other test pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][434] ([i915#11989]) -> [PASS][435] +9 other tests pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [DMESG-WARN][436] ([i915#4423]) -> [PASS][437]
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15749/shard-dg1-14/igt@kms_flip@flip-vs-suspend-interruptible.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/shard-dg1-13/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-snb:
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12202/index.html
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Xe.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev6)
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (8 preceding siblings ...)
2024-11-26 21:50 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-11-29 21:21 ` Patchwork
2024-11-30 6:06 ` ✗ Xe.CI.Full: " Patchwork
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-11-29 21:21 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9903 bytes --]
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev6)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8132_BAT -> XEIGTPW_12222_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12222_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12222_BAT, 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 (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12222_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- bat-lnl-1: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1:
- bat-adlp-7: [PASS][3] -> [DMESG-WARN][4] +3 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-adlp-7/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-adlp-7/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1.html
* igt@kms_pipe_crc_basic@read-crc@pipe-a-dp-1:
- bat-lnl-2: [PASS][5] -> [DMESG-WARN][6] +37 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-lnl-2/igt@kms_pipe_crc_basic@read-crc@pipe-a-dp-1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-2/igt@kms_pipe_crc_basic@read-crc@pipe-a-dp-1.html
* igt@xe_wedged@wedged-at-any-timeout:
- bat-adlp-vf: NOTRUN -> [ABORT][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-adlp-vf/igt@xe_wedged@wedged-at-any-timeout.html
- bat-pvc-2: NOTRUN -> [ABORT][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-pvc-2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-dg2-oem2: NOTRUN -> [ABORT][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-dg2-oem2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-atsm-2: NOTRUN -> [ABORT][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-atsm-2/igt@xe_wedged@wedged-at-any-timeout.html
Known issues
------------
Here are the changes found in XEIGTPW_12222_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@read:
- bat-bmg-1: [PASS][11] -> [DMESG-WARN][12] ([Intel XE#3468])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-bmg-1/igt@fbdev@read.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-bmg-1/igt@fbdev@read.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- bat-lnl-2: [PASS][13] -> [DMESG-WARN][14] ([Intel XE#2705] / [Intel XE#324]) +1 other test dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-lnl-2/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-2/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-adlp-7: [PASS][15] -> [INCOMPLETE][16] ([Intel XE#1727]) +5 other tests incomplete
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- bat-lnl-2: [PASS][17] -> [DMESG-FAIL][18] ([Intel XE#324]) +2 other tests dmesg-fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-lnl-2/igt@kms_pipe_crc_basic@hang-read-crc.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-2/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-lnl-2: [PASS][19] -> [DMESG-WARN][20] ([Intel XE#2705])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-lnl-2/igt@kms_pipe_crc_basic@nonblocking-crc.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-2/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@xe_exec_atomic@basic-inc-all@engine-drm_xe_engine_class_video_enhance-instance-0-tile-1-system-memory:
- bat-lnl-2: [PASS][21] -> [DMESG-WARN][22] ([Intel XE#324]) +10 other tests dmesg-warn
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-lnl-2/igt@xe_exec_atomic@basic-inc-all@engine-drm_xe_engine_class_video_enhance-instance-0-tile-1-system-memory.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-2/igt@xe_exec_atomic@basic-inc-all@engine-drm_xe_engine_class_video_enhance-instance-0-tile-1-system-memory.html
* igt@xe_live_ktest@xe_migrate:
- bat-lnl-2: [PASS][23] -> [SKIP][24] ([Intel XE#1192]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html
- bat-lnl-1: [PASS][25] -> [SKIP][26] ([Intel XE#1192]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
* igt@xe_wedged@basic-wedged:
- bat-adlp-vf: NOTRUN -> [DMESG-WARN][27] ([Intel XE#2919])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-adlp-vf/igt@xe_wedged@basic-wedged.html
- bat-lnl-1: NOTRUN -> [DMESG-WARN][28] ([Intel XE#2919] / [Intel XE#3119])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-1/igt@xe_wedged@basic-wedged.html
- bat-bmg-2: NOTRUN -> [DMESG-WARN][29] ([Intel XE#2919])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-bmg-2/igt@xe_wedged@basic-wedged.html
- bat-bmg-1: NOTRUN -> [DMESG-WARN][30] ([Intel XE#2919])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-bmg-1/igt@xe_wedged@basic-wedged.html
- bat-adlp-7: NOTRUN -> [DMESG-WARN][31] ([Intel XE#2919])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-adlp-7/igt@xe_wedged@basic-wedged.html
- bat-lnl-2: NOTRUN -> [DMESG-WARN][32] ([Intel XE#2919] / [Intel XE#3119])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-2/igt@xe_wedged@basic-wedged.html
- bat-dg2-oem2: NOTRUN -> [DMESG-WARN][33] ([Intel XE#2919])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-dg2-oem2/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-at-any-timeout:
- bat-bmg-2: NOTRUN -> [ABORT][34] ([Intel XE#3421])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-bmg-1: NOTRUN -> [ABORT][35] ([Intel XE#3421] / [Intel XE#3467])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_addfb_basic@bad-pitch-0:
- bat-adlp-7: [DMESG-WARN][36] ([Intel XE#3429]) -> [PASS][37] +31 other tests pass
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-lnl-1: [SKIP][38] ([Intel XE#2229]) -> [SKIP][39] ([Intel XE#1192])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
- bat-lnl-2: [SKIP][40] ([Intel XE#2229]) -> [SKIP][41] ([Intel XE#1192])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3429
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
Build changes
-------------
* IGT: IGT_8132 -> IGTPW_12222
IGTPW_12222: 12222
IGT_8132: 7675e070cb74c6808050764367f978f6b74ebc36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2295-108f610005f88de624c1a8c4f85d5cab9f530ddb: 108f610005f88de624c1a8c4f85d5cab9f530ddb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/index.html
[-- Attachment #2: Type: text/html, Size: 11917 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Xe.CI.Full: failure for Ignore more warns in xe_wedged tests (rev6)
2024-11-26 18:10 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (9 preceding siblings ...)
2024-11-29 21:21 ` ✗ Xe.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev6) Patchwork
@ 2024-11-30 6:06 ` Patchwork
10 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-11-30 6:06 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 45568 bytes --]
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev6)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8132_full -> XEIGTPW_12222_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12222_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12222_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_12222_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_plane_lowres@tiling-x.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_plane_lowres@tiling-x.html
* igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01:
- shard-bmg: NOTRUN -> [INCOMPLETE][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01.html
#### Warnings ####
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][6] ([Intel XE#3468]) -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [DMESG-WARN][8] ([Intel XE#3467] / [Intel XE#3468]) -> [ABORT][9] +1 other test abort
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_pm@s4-basic-exec:
- shard-bmg: [DMESG-WARN][10] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@xe_pm@s4-basic-exec.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@xe_pm@s4-basic-exec.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [DMESG-WARN][12] ([Intel XE#2919]) -> [ABORT][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_wedged@basic-wedged.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@xe_wedged@basic-wedged.html
Known issues
------------
Here are the changes found in XEIGTPW_12222_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_interruptible@legacy-setmode@pipe-a-dp-2:
- shard-bmg: [PASS][14] -> [DMESG-WARN][15] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-dp-2.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-dp-2.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2327]) +6 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#610])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
- shard-bmg: [PASS][20] -> [DMESG-FAIL][21] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#3432])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +11 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2325])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2390]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2320])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests incomplete
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_cursor_crc@cursor-suspend.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-edp-1:
- shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#2577]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-5/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-edp-1.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-1/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-edp-1.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#877]) +1 other test dmesg-warn
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2286]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a3:
- shard-bmg: [PASS][36] -> [FAIL][37] ([Intel XE#2882]) +5 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a3.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate@b-edp1:
- shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#886]) +5 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@c-edp1:
- shard-lnl: [PASS][40] -> [FAIL][41] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#2882]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2293]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2311]) +17 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#2333]) +10 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2352])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2313]) +23 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2340])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_plane_cursor@overlay@pipe-d-dp-2-size-64:
- shard-bmg: [PASS][50] -> [DMESG-WARN][51] ([Intel XE#3468]) +41 other tests dmesg-warn
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_plane_cursor@overlay@pipe-d-dp-2-size-64.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_plane_cursor@overlay@pipe-d-dp-2-size-64.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- shard-bmg: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#2705] / [Intel XE#3468])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2763]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#870])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#718])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2392])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1489]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2414])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#3414])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#899])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@query-busy:
- shard-bmg: NOTRUN -> [DMESG-FAIL][66] ([Intel XE#3468]) +4 other tests dmesg-fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_vblank@query-busy.html
* igt@kms_vblank@query-busy@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][67] ([Intel XE#3468]) +8 other tests dmesg-warn
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_vblank@query-busy@pipe-d-hdmi-a-3.html
* igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][68] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-3.html
* igt@kms_vblank@wait-forked@pipe-a-dp-2:
- shard-bmg: [PASS][69] -> [DMESG-FAIL][70] ([Intel XE#3468]) +7 other tests dmesg-fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_vblank@wait-forked@pipe-a-dp-2.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_vblank@wait-forked@pipe-a-dp-2.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#1522]) +1 other test fail
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-8/igt@kms_vrr@max-min@pipe-a-edp-1.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-7/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#756])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_ccs@suspend-resume:
- shard-bmg: NOTRUN -> [INCOMPLETE][74] ([Intel XE#1727] / [Intel XE#3468])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@xe_ccs@suspend-resume.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01:
- shard-bmg: NOTRUN -> [DMESG-FAIL][75] ([Intel XE#1727] / [Intel XE#3468])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-vram01-vram01.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2905]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2322]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [PASS][78] -> [DMESG-WARN][79] ([Intel XE#3467] / [Intel XE#3468])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: [PASS][80] -> [SKIP][81] ([Intel XE#1192])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-4/igt@xe_live_ktest@xe_bo.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-3/igt@xe_live_ktest@xe_bo.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: NOTRUN -> [DMESG-WARN][82] ([Intel XE#3467]) +1 other test dmesg-warn
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@xe_module_load@reload-no-display.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2427])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@xe_peer2peer@read.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-bmg: NOTRUN -> [FAIL][84] ([Intel XE#3290])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-lnl: [PASS][85] -> [ABORT][86] ([Intel XE#1358] / [Intel XE#1616])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-8/igt@xe_pm@s2idle-multiple-execs.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-7/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s3-basic-exec:
- shard-bmg: [PASS][87] -> [DMESG-WARN][88] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-3/igt@xe_pm@s3-basic-exec.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@xe_pm@s3-basic-exec.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#944]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait:
- shard-bmg: [INCOMPLETE][90] ([Intel XE#3468]) -> [PASS][91] +1 other test pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: [DMESG-FAIL][92] ([Intel XE#3468]) -> [PASS][93] +30 other tests pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [DMESG-WARN][94] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][96] ([Intel XE#877]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][98] -> [PASS][99] +3 other tests pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][100] -> [PASS][101] +1 other test pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][102] ([Intel XE#2882]) -> [PASS][103] +8 other tests pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend:
- shard-lnl: [DMESG-WARN][104] ([Intel XE#2932]) -> [PASS][105] +3 other tests pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-8/igt@kms_flip@flip-vs-suspend.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-8/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-bmg: [DMESG-WARN][106] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][107] +1 other test pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_plane@pixel-format:
- shard-bmg: [INCOMPLETE][108] ([Intel XE#1035] / [Intel XE#3468]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_plane@pixel-format.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_plane@pixel-format.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128:
- shard-bmg: [DMESG-FAIL][110] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][111] +2 other tests pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:
- shard-bmg: [DMESG-FAIL][112] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][113] +3 other tests pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [DMESG-WARN][114] ([Intel XE#2566] / [Intel XE#3468]) -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][116] ([Intel XE#718]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@legacy-planes@plane-50:
- shard-bmg: [DMESG-WARN][118] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][119] +9 other tests pass
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_pm_rpm@legacy-planes@plane-50.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_pm_rpm@legacy-planes@plane-50.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-3:
- shard-bmg: [FAIL][120] ([Intel XE#3559]) -> [PASS][121] +3 other tests pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-bmg: [DMESG-WARN][122] ([Intel XE#3426]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@xe_ccs@block-multicopy-compressed@tile64-compressed-compfmt0-vram01-vram01-multicopy:
- shard-bmg: [DMESG-WARN][124] ([Intel XE#3468]) -> [PASS][125] +143 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@xe_ccs@block-multicopy-compressed@tile64-compressed-compfmt0-vram01-vram01-multicopy.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@xe_ccs@block-multicopy-compressed@tile64-compressed-compfmt0-vram01-vram01-multicopy.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][126] ([Intel XE#1473]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_balancer@twice-parallel-userptr:
- shard-bmg: [DMESG-WARN][128] ([Intel XE#1727]) -> [PASS][129] +4 other tests pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_exec_balancer@twice-parallel-userptr.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@xe_exec_balancer@twice-parallel-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][130] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][131] +4 other tests pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [DMESG-WARN][132] ([Intel XE#3343]) -> [PASS][133] +1 other test pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [DMESG-WARN][134] ([Intel XE#3467]) -> [PASS][135] +1 other test pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-lnl: [DMESG-WARN][136] -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-bmg: [INCOMPLETE][138] ([Intel XE#2998]) -> [PASS][139] +1 other test pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: [DMESG-WARN][140] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@xe_pm@s2idle-multiple-execs.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [DMESG-WARN][142] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@xe_pm@s3-vm-bind-prefetch.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-mocs:
- shard-bmg: [DMESG-WARN][144] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_pm@s4-mocs.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@xe_pm@s4-mocs.html
* igt@xe_wedged@basic-wedged:
- shard-lnl: [DMESG-WARN][146] ([Intel XE#2919] / [Intel XE#3119]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-8/igt@xe_wedged@basic-wedged.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-5/igt@xe_wedged@basic-wedged.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-bmg: [DMESG-WARN][148] ([Intel XE#3468]) -> [DMESG-FAIL][149] ([Intel XE#3468])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-180:
- shard-bmg: [DMESG-FAIL][150] ([Intel XE#3468]) -> [DMESG-WARN][151] ([Intel XE#3468])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: [INCOMPLETE][152] ([Intel XE#2715] / [Intel XE#3468]) -> [FAIL][153] ([Intel XE#1178]) +1 other test fail
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [DMESG-FAIL][154] ([Intel XE#3468]) -> [FAIL][155] ([Intel XE#1695])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-FAIL][156] ([Intel XE#3468]) -> [FAIL][157] ([Intel XE#2882])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][158] ([Intel XE#3468]) -> [FAIL][159] ([Intel XE#2882])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: [DMESG-FAIL][160] ([Intel XE#3468]) -> [FAIL][161] ([Intel XE#2333]) +16 other tests fail
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [FAIL][162] ([Intel XE#2333]) -> [DMESG-FAIL][163] ([Intel XE#3468])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [DMESG-FAIL][164] ([Intel XE#3468]) -> [FAIL][165] ([Intel XE#1430])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_pm_dc@dc6-dpms.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: [SKIP][166] ([Intel XE#3289]) -> [SKIP][167] ([Intel XE#1439] / [Intel XE#836])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-bmg: [INCOMPLETE][168] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][169] ([Intel XE#1727] / [Intel XE#3468])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_vblank@ts-continuation-suspend.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-2:
- shard-bmg: [INCOMPLETE][170] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][171] ([Intel XE#3468])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-2.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-5/igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-2.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: [INCOMPLETE][172] ([Intel XE#1473] / [Intel XE#3468]) -> [TIMEOUT][173] ([Intel XE#1473])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-large.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [DMESG-WARN][174] ([Intel XE#3343] / [Intel XE#3468]) -> [ABORT][175] ([Intel XE#3343])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: [SKIP][176] ([Intel XE#2833]) -> [SKIP][177] ([Intel XE#1192] / [Intel XE#3026])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-lnl-7/igt@xe_live_ktest@xe_eudebug.html
- shard-bmg: [SKIP][178] ([Intel XE#1192]) -> [SKIP][179] ([Intel XE#2833])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_live_ktest@xe_eudebug.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3289]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3289
[Intel XE#3290]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3290
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3426
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8132 -> IGTPW_12222
IGTPW_12222: 12222
IGT_8132: 7675e070cb74c6808050764367f978f6b74ebc36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2295-108f610005f88de624c1a8c4f85d5cab9f530ddb: 108f610005f88de624c1a8c4f85d5cab9f530ddb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12222/index.html
[-- Attachment #2: Type: text/html, Size: 54963 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread