* [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests
@ 2024-11-08 20:18 Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings Kamil Konieczny
` (9 more replies)
0 siblings, 10 replies; 16+ messages in thread
From: Kamil Konieczny @ 2024-11-08 20:18 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)
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.47.0
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH i-g-t v3 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
@ 2024-11-08 20:18 ` Kamil Konieczny
2024-11-08 22:25 ` Rodrigo Vivi
2024-11-08 20:18 ` [PATCH i-g-t v3 2/4] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_wedged Kamil Konieczny
` (8 subsequent siblings)
9 siblings, 1 reply; 16+ messages in thread
From: Kamil Konieczny @ 2024-11-08 20:18 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
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>
---
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..123ce6396 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_.*drm");
}
static void force_wedged(int fd)
--
2.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH i-g-t v3 2/4] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_wedged
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings Kamil Konieczny
@ 2024-11-08 20:18 ` Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 3/4] lib/drmtest: invalidate cached fds after unbind Kamil Konieczny
` (7 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Kamil Konieczny @ 2024-11-08 20:18 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 d9fb98aab..2bb7bebd9 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.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH i-g-t v3 3/4] lib/drmtest: invalidate cached fds after unbind
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 2/4] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_wedged Kamil Konieczny
@ 2024-11-08 20:18 ` Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 4/4] lib/igt_sysfs: improve xe sysfs checks Kamil Konieczny
` (6 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Kamil Konieczny @ 2024-11-08 20:18 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 26a3aa31f..356b20f29 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -1377,6 +1377,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.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH i-g-t v3 4/4] lib/igt_sysfs: improve xe sysfs checks
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (2 preceding siblings ...)
2024-11-08 20:18 ` [PATCH i-g-t v3 3/4] lib/drmtest: invalidate cached fds after unbind Kamil Konieczny
@ 2024-11-08 20:18 ` Kamil Konieczny
2024-11-08 21:23 ` ✗ Fi.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev3) Patchwork
` (5 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Kamil Konieczny @ 2024-11-08 20:18 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 356b20f29..c414c57e9 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -1376,7 +1376,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) {
@@ -1399,7 +1399,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.47.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* ✗ Fi.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev3)
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (3 preceding siblings ...)
2024-11-08 20:18 ` [PATCH i-g-t v3 4/4] lib/igt_sysfs: improve xe sysfs checks Kamil Konieczny
@ 2024-11-08 21:23 ` Patchwork
2024-11-08 22:11 ` ✗ CI.xeBAT: " Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-08 21:23 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3382 bytes --]
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev3)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8101 -> IGTPW_12072
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12072 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12072, 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_12072/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12072:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_fence@basic-wait:
- bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8101/bat-rpls-4/igt@gem_exec_fence@basic-wait.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12072/bat-rpls-4/igt@gem_exec_fence@basic-wait.html
Known issues
------------
Here are the changes found in IGTPW_12072 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arlh-3: [PASS][3] -> [ABORT][4] ([i915#10341])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8101/bat-arlh-3/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12072/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][5] -> [ABORT][6] ([i915#12061])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8101/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12072/bat-arlh-3/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-dg2-13: [DMESG-WARN][7] ([i915#12253]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8101/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12072/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8101 -> IGTPW_12072
* Linux: CI_DRM_15658 -> CI_DRM_15661
CI-20190529: 20190529
CI_DRM_15658: 5521311ecd7ffbb0adf016dbf83bd0165fc94d25 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15661: 5d94c05a3b9625a569b92a4ed208ce04e241f122 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12072: ba67f6a70cd24baa8b58795c7bd22bd2b8028525 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8101: 1235576931b5abdcb2c755672d194fb540fa6fb1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12072/index.html
[-- Attachment #2: Type: text/html, Size: 4085 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ CI.xeBAT: failure for Ignore more warns in xe_wedged tests (rev3)
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (4 preceding siblings ...)
2024-11-08 21:23 ` ✗ Fi.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev3) Patchwork
@ 2024-11-08 22:11 ` Patchwork
2024-11-10 0:33 ` ✗ CI.xeFULL: " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-11-08 22:11 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6774 bytes --]
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev3)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8101_BAT -> XEIGTPW_12072_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12072_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12072_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_12072_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_8101/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-adlp-7: [PASS][3] -> [INCOMPLETE][4] +5 other tests incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1:
- bat-adlp-7: [PASS][5] -> [DMESG-WARN][6] +1 other test dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/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_12072/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_12072/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_12072/bat-pvc-2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-bmg-2: NOTRUN -> [ABORT][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-bmg-1: NOTRUN -> [ABORT][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html
- bat-dg2-oem2: NOTRUN -> [ABORT][11]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-dg2-oem2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-atsm-2: NOTRUN -> [ABORT][12]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-atsm-2/igt@xe_wedged@wedged-at-any-timeout.html
Known issues
------------
Here are the changes found in XEIGTPW_12072_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-lnl-1: [PASS][13] -> [FAIL][14] ([Intel XE#886]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@xe_live_ktest@xe_bo:
- bat-lnl-1: [PASS][15] -> [SKIP][16] ([Intel XE#1192]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_migrate:
- bat-lnl-2: [PASS][17] -> [SKIP][18] ([Intel XE#1192]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html
* igt@xe_wedged@basic-wedged:
- bat-adlp-vf: NOTRUN -> [DMESG-WARN][19] ([Intel XE#2919])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-adlp-vf/igt@xe_wedged@basic-wedged.html
- bat-lnl-1: NOTRUN -> [DMESG-WARN][20] ([Intel XE#2919] / [Intel XE#3119])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-lnl-1/igt@xe_wedged@basic-wedged.html
- bat-bmg-2: NOTRUN -> [DMESG-WARN][21] ([Intel XE#2919])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-bmg-2/igt@xe_wedged@basic-wedged.html
- bat-bmg-1: NOTRUN -> [DMESG-WARN][22] ([Intel XE#2919])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-bmg-1/igt@xe_wedged@basic-wedged.html
- bat-adlp-7: NOTRUN -> [DMESG-WARN][23] ([Intel XE#2919])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-adlp-7/igt@xe_wedged@basic-wedged.html
- bat-dg2-oem2: NOTRUN -> [DMESG-WARN][24] ([Intel XE#2919])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-dg2-oem2/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][25] ([Intel XE#1861]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[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#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
Build changes
-------------
* IGT: IGT_8101 -> IGTPW_12072
* Linux: xe-2190-5521311ecd7ffbb0adf016dbf83bd0165fc94d25 -> xe-2193-5d94c05a3b9625a569b92a4ed208ce04e241f122
IGTPW_12072: ba67f6a70cd24baa8b58795c7bd22bd2b8028525 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8101: 1235576931b5abdcb2c755672d194fb540fa6fb1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2190-5521311ecd7ffbb0adf016dbf83bd0165fc94d25: 5521311ecd7ffbb0adf016dbf83bd0165fc94d25
xe-2193-5d94c05a3b9625a569b92a4ed208ce04e241f122: 5d94c05a3b9625a569b92a4ed208ce04e241f122
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/index.html
[-- Attachment #2: Type: text/html, Size: 8051 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t v3 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings
2024-11-08 20:18 ` [PATCH i-g-t v3 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings Kamil Konieczny
@ 2024-11-08 22:25 ` Rodrigo Vivi
0 siblings, 0 replies; 16+ messages in thread
From: Rodrigo Vivi @ 2024-11-08 22:25 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev, Jonathan Cavitt, Zbigniew Kempczyński
On Fri, Nov 08, 2024 at 09:18:36PM +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
>
> 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..123ce6396 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_.*drm");
> }
>
> static void force_wedged(int fd)
> --
> 2.47.0
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ CI.xeFULL: failure for Ignore more warns in xe_wedged tests (rev3)
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (5 preceding siblings ...)
2024-11-08 22:11 ` ✗ CI.xeBAT: " Patchwork
@ 2024-11-10 0:33 ` Patchwork
2024-11-26 16:42 ` Kamil Konieczny
2024-11-25 21:35 ` ✗ i915.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev4) Patchwork
` (2 subsequent siblings)
9 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2024-11-10 0:33 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 111537 bytes --]
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev3)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8101_full -> XEIGTPW_12072_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12072_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12072_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_12072_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@core_getversion@all-cards.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@core_getversion@all-cards.html
* igt@core_hotunplug@unbind-rebind:
- shard-lnl: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-4/igt@core_hotunplug@unbind-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-1/igt@core_hotunplug@unbind-rebind.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][5] -> [DMESG-WARN][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-random-128x128:
- shard-dg2-set2: [PASS][7] -> [SKIP][8] +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_cursor_crc@cursor-random-128x128.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_cursor_crc@cursor-random-128x128.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][9] +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-lnl: [PASS][10] -> [FAIL][11] +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-4/igt@kms_psr@fbc-psr2-no-drrs.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-6/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][12]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-90.html
#### Warnings ####
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][13] ([Intel XE#373]) -> [SKIP][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2-set2: [SKIP][15] ([Intel XE#455]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][17] ([Intel XE#2890]) -> [SKIP][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][19] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][21] ([Intel XE#653]) -> [SKIP][22]
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2-set2: [SKIP][23] ([Intel XE#2423] / [i915#2575]) -> [SKIP][24] +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_hdr@static-toggle-dpms.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: [SKIP][25] ([Intel XE#870]) -> [SKIP][26]
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_pm_backlight@basic-brightness.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][27] ([Intel XE#3309]) -> [SKIP][28]
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html
Known issues
------------
Here are the changes found in XEIGTPW_12072_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2134])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-3/igt@fbdev@eof.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@fbdev@eof.html
* igt@fbdev@write:
- shard-dg2-set2: [PASS][31] -> [SKIP][32] ([Intel XE#2134]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@fbdev@write.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2233])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@unused-pitches:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2423] / [i915#2575]) +34 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_addfb_basic@unused-pitches.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][35] -> [FAIL][36] ([Intel XE#1426]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#316]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1407]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#829])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_big_fb@linear-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2327])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1124]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1124]) +11 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1124])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#367]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#367])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#787]) +203 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2887]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#787]) +42 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2887]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#1727])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [PASS][52] -> [INCOMPLETE][53] ([Intel XE#3124])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#314]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_audio@dp-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#373]) +9 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#306]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2252]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-6/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#373])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-2/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_color@ctm-red-to-blue:
- shard-lnl: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#2929]) +1 other test dmesg-warn
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-7/igt@kms_color@ctm-red-to-blue.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-7/igt@kms_color@ctm-red-to-blue.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#307]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [FAIL][62] ([Intel XE#1178]) +1 other test fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][63] ([Intel XE#1188])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2320]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#308]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2321])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [PASS][67] -> [SKIP][68] ([Intel XE#2423] / [i915#2575]) +75 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-64x64.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#323])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2286])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#309])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#1475])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#3070])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2244])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1137])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][76] -> [FAIL][77] ([Intel XE#301])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#301]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1421])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-4/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][81] -> [FAIL][82] ([Intel XE#2882]) +3 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: NOTRUN -> [FAIL][83] ([Intel XE#886]) +2 other tests fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-4/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][84] ([Intel XE#301]) +7 other tests fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][85] -> [INCOMPLETE][86] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
- shard-dg2-set2: [PASS][87] -> [INCOMPLETE][88] ([Intel XE#1195] / [Intel XE#2049])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [PASS][89] -> [FAIL][90] ([Intel XE#886]) +3 other tests fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2890]) +36 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2890]) +24 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2351] / [Intel XE#2890]) +11 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#455]) +17 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1401]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2311]) +8 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [FAIL][99] ([Intel XE#2333]) +5 other tests fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [PASS][100] -> [SKIP][101] ([Intel XE#2351] / [Intel XE#2890]) +10 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#651]) +22 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#656]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#651]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#658])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2352])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2313]) +9 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#653]) +23 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][109] ([Intel XE#3312]) +1 other test fail
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-6.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][110] -> [SKIP][111] ([Intel XE#455])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
* igt@kms_lease@lease-again:
- shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#3189]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-8/igt@kms_lease@lease-again.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_lease@lease-again.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][114] ([Intel XE#616]) +8 other tests fail
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#3189]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2763] / [Intel XE#455]) +8 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2763]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2763]) +17 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2938])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1122]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1129])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html
- shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#718])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][124] -> [FAIL][125] ([Intel XE#1430])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2446]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [PASS][127] -> [SKIP][128] ([Intel XE#2446]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prop_blob@blob-prop-validate:
- shard-bmg: [PASS][129] -> [SKIP][130] ([Intel XE#780])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-2/igt@kms_prop_blob@blob-prop-validate.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_prop_blob@blob-prop-validate.html
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#780])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_prop_blob@blob-prop-validate.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2893]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1489])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1489]) +5 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-7/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr2-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_psr@psr2-basic.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1127])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#1435])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vrr@max-min:
- shard-lnl: [PASS][139] -> [FAIL][140] ([Intel XE#1522]) +1 other test fail
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-2/igt@kms_vrr@max-min.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-3/igt@kms_vrr@max-min.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1091] / [Intel XE#2849])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#1280] / [Intel XE#455]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2905]) +6 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: [PASS][144] -> [TIMEOUT][145] ([Intel XE#1473])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-3/igt@xe_evict@evict-beng-mixed-threads-large.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#688])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1130]) +72 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [PASS][148] -> [SKIP][149] ([Intel XE#1130]) +131 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@xe_exec_balancer@once-parallel-rebind.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2322])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1392]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-1/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch:
- shard-lnl: [PASS][152] -> [FAIL][153] ([Intel XE#1630]) +2 other tests fail
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html
- shard-bmg: [PASS][154] -> [FAIL][155] ([Intel XE#1630]) +1 other test fail
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#288]) +14 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2360])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_sip_eudebug@breakpoint-waitsip:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2905])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-5/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html
* igt@xe_fault_injection@inject-fault-probe@function-xe_guc_ct_init:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][159] ([Intel XE#3343]) +6 other tests dmesg-warn
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe@function-xe_guc_ct_init.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2229])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1416])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-3/igt@xe_mmap@vram.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [PASS][162] -> [FAIL][163] ([Intel XE#2136])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-2/igt@xe_module_load@reload-no-display.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@create-destroy-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#2541]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@xe_oa@create-destroy-userspace-config.html
* igt@xe_oa@mmio-triggered-reports:
- shard-bmg: [PASS][165] -> [FAIL][166] ([Intel XE#2249]) +1 other test fail
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html
- shard-lnl: [PASS][167] -> [FAIL][168] ([Intel XE#2249]) +1 other test fail
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-8/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#977])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2427])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-1/igt@xe_peer2peer@read.html
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#1061])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-4/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][172] ([Intel XE#1173]) +1 other test fail
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s4-basic:
- shard-lnl: [PASS][174] -> [ABORT][175] ([Intel XE#1358] / [Intel XE#1607])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-5/igt@xe_pm@s4-basic.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-2/igt@xe_pm@s4-basic.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#944]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_tlb@basic-tlb:
- shard-dg2-set2: NOTRUN -> [FAIL][177] ([Intel XE#2922])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@xe_tlb@basic-tlb.html
#### Possible fixes ####
* igt@core_getstats:
- shard-dg2-set2: [SKIP][178] ([Intel XE#2423]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@core_getstats.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@core_getstats.html
* igt@core_hotunplug@hotrebind:
- shard-dg2-set2: [SKIP][180] ([Intel XE#1885]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@core_hotunplug@hotrebind.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@core_hotunplug@hotrebind.html
* igt@core_hotunplug@hotreplug:
- shard-lnl: [ABORT][182] -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-5/igt@core_hotunplug@hotreplug.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-4/igt@core_hotunplug@hotreplug.html
* igt@fbdev@unaligned-read:
- shard-dg2-set2: [SKIP][184] ([Intel XE#2134]) -> [PASS][185]
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@fbdev@unaligned-read.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@fbdev@unaligned-read.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [FAIL][186] ([Intel XE#827]) -> [PASS][187] +1 other test pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-dg2-set2: [SKIP][188] ([Intel XE#2423] / [i915#2575]) -> [PASS][189] +96 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_atomic@plane-invalid-params-fence.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-lnl: [FAIL][190] ([Intel XE#1426]) -> [PASS][191] +1 other test pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-bmg: [INCOMPLETE][192] ([Intel XE#2613]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][194] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [DMESG-WARN][196] ([Intel XE#3113]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][198] ([Intel XE#1195] / [Intel XE#3124]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@mode-transition:
- shard-dg2-set2: [SKIP][200] ([Intel XE#2890]) -> [PASS][201] +23 other tests pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_cdclk@mode-transition.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_cdclk@mode-transition.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][202] ([Intel XE#301]) -> [PASS][203] +4 other tests pass
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][204] ([Intel XE#886]) -> [PASS][205] +7 other tests pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [INCOMPLETE][206] ([Intel XE#2635]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
- shard-bmg: [INCOMPLETE][208] -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
* igt@kms_flip@plain-flip-ts-check:
- shard-lnl: [FAIL][210] ([Intel XE#3403] / [Intel XE#886]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-6/igt@kms_flip@plain-flip-ts-check.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-4/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: [SKIP][212] ([Intel XE#2351]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][214] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][215] +14 other tests pass
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_pm_rpm@universal-planes:
- shard-dg2-set2: [SKIP][216] ([Intel XE#2446]) -> [PASS][217] +5 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_pm_rpm@universal-planes.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_pm_rpm@universal-planes.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][218] ([Intel XE#899]) -> [PASS][219] +2 other tests pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: [ABORT][220] ([Intel XE#1034] / [Intel XE#2625]) -> [PASS][221]
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-4:
- shard-dg2-set2: [ABORT][222] ([Intel XE#1034]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-4.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-4.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [TIMEOUT][224] ([Intel XE#1473]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: [FAIL][226] ([Intel XE#1000]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-5/igt@xe_evict@evict-mixed-threads-large.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-1/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_balancer@once-cm-parallel-userptr-rebind:
- shard-dg2-set2: [INCOMPLETE][228] ([Intel XE#1195] / [Intel XE#2594]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-433/igt@xe_exec_balancer@once-cm-parallel-userptr-rebind.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@xe_exec_balancer@once-cm-parallel-userptr-rebind.html
* igt@xe_exec_basic@once-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][230] ([Intel XE#1130]) -> [PASS][231] +178 other tests pass
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_exec_basic@once-userptr-invalidate-race.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@xe_exec_basic@once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [FAIL][232] ([Intel XE#1630]) -> [PASS][233] +1 other test pass
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-6/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
- shard-lnl: [FAIL][234] ([Intel XE#1630]) -> [PASS][235] +3 other tests pass
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-1/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][236] ([Intel XE#2136]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_module_load@reload.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@xe_module_load@reload.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [ABORT][238] ([Intel XE#1358]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [ABORT][240] ([Intel XE#1794]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@xe_pm@s4-vm-bind-unbind-all.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][242] ([Intel XE#1794]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-6/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_wedged@basic-wedged:
- shard-lnl: [DMESG-WARN][244] ([Intel XE#2919] / [Intel XE#3119]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-5/igt@xe_wedged@basic-wedged.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-4/igt@xe_wedged@basic-wedged.html
- shard-bmg: [DMESG-WARN][246] ([Intel XE#2919]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-6/igt@xe_wedged@basic-wedged.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@xe_wedged@basic-wedged.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][248] ([Intel XE#2890]) -> [SKIP][249] ([Intel XE#829])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
- shard-bmg: [SKIP][250] ([Intel XE#2327]) -> [SKIP][251] ([Intel XE#829])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][252] ([Intel XE#316]) -> [SKIP][253] ([Intel XE#2351] / [Intel XE#2890])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][254] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][255] ([Intel XE#316]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][256] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][257] ([Intel XE#829])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-180.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_big_fb@linear-32bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][258] ([Intel XE#316]) -> [SKIP][259] ([Intel XE#2890]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_big_fb@linear-32bpp-rotate-90.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][260] ([Intel XE#2890]) -> [SKIP][261] ([Intel XE#316]) +3 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][262] ([Intel XE#1124]) -> [SKIP][263] ([Intel XE#2351] / [Intel XE#2890]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][264] ([Intel XE#619]) -> [SKIP][265] ([Intel XE#2351] / [Intel XE#2890])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg2-set2: [SKIP][266] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][267] ([Intel XE#1124]) +3 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][268] ([Intel XE#607]) -> [SKIP][269] ([Intel XE#2890])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/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-async-flip:
- shard-dg2-set2: [SKIP][270] ([Intel XE#1124]) -> [SKIP][271] ([Intel XE#2890]) +4 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: [SKIP][272] ([Intel XE#2890]) -> [SKIP][273] ([Intel XE#1124]) +9 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: [SKIP][274] ([Intel XE#367]) -> [SKIP][275] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][276] ([Intel XE#2423] / [i915#2575]) -> [SKIP][277] ([Intel XE#367]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][278] ([Intel XE#2191]) -> [SKIP][279] ([Intel XE#2423] / [i915#2575])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: [SKIP][280] ([Intel XE#2423] / [i915#2575]) -> [SKIP][281] ([Intel XE#2191]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][282] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][283] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][284] ([Intel XE#2890]) -> [SKIP][285] ([Intel XE#455] / [Intel XE#787]) +12 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][286] ([Intel XE#2907]) -> [SKIP][287] ([Intel XE#2890]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][288] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][289] ([Intel XE#2351] / [Intel XE#2890])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][290] ([Intel XE#2890]) -> [SKIP][291] ([Intel XE#2907]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][292] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][293] ([Intel XE#2890]) +9 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][294] ([Intel XE#314]) -> [SKIP][295] ([Intel XE#2351] / [Intel XE#2890])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][296] ([Intel XE#2423] / [i915#2575]) -> [SKIP][297] ([Intel XE#306])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][298] ([Intel XE#306]) -> [SKIP][299] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_chamelium_color@gamma.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][300] ([Intel XE#373]) -> [SKIP][301] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-bmg: [SKIP][302] ([Intel XE#2252]) -> [SKIP][303] ([Intel XE#3189])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][304] ([Intel XE#2423] / [i915#2575]) -> [SKIP][305] ([Intel XE#373]) +12 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][306] ([Intel XE#307]) -> [SKIP][307] ([Intel XE#2423] / [i915#2575])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][308] ([Intel XE#2423] / [i915#2575]) -> [SKIP][309] ([Intel XE#307])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [FAIL][310] ([Intel XE#1178]) -> [SKIP][311] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_content_protection@lic-type-0.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][312] ([Intel XE#2423] / [i915#2575]) -> [SKIP][313] ([Intel XE#308]) +2 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][314] ([Intel XE#308]) -> [SKIP][315] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: [SKIP][316] ([Intel XE#2423] / [i915#2575]) -> [SKIP][317] ([Intel XE#455]) +8 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-max-size.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][318] ([Intel XE#2423] / [i915#2575]) -> [SKIP][319] ([Intel XE#323]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][320] ([Intel XE#455]) -> [SKIP][321] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][322] ([Intel XE#1138]) -> [SKIP][323] ([Intel XE#2423] / [i915#2575])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-433/igt@kms_feature_discovery@display-4x.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@bo-too-big-interruptible@a-edp1:
- shard-lnl: [TIMEOUT][324] ([Intel XE#1504]) -> [INCOMPLETE][325] ([Intel XE#1504]) +1 other test incomplete
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-7/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-7/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-dg2-set2: [SKIP][326] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][327] ([Intel XE#455])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][328] ([Intel XE#2890]) -> [SKIP][329] ([Intel XE#455]) +2 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-bmg: [SKIP][330] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][331] ([Intel XE#3189])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][332] ([Intel XE#455]) -> [SKIP][333] ([Intel XE#2890]) +2 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][334] ([Intel XE#2423] / [i915#2575]) -> [SKIP][335] ([i915#5274])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][336] ([Intel XE#2890]) -> [SKIP][337] ([Intel XE#651]) +21 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][338] ([Intel XE#2333]) -> [SKIP][339] ([Intel XE#3189])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][340] ([Intel XE#651]) -> [SKIP][341] ([Intel XE#2890]) +21 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/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][342] ([Intel XE#651]) -> [SKIP][343] ([Intel XE#2351] / [Intel XE#2890]) +3 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][344] ([Intel XE#2311]) -> [SKIP][345] ([Intel XE#3189]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][346] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][347] ([Intel XE#651]) +11 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][348] ([Intel XE#653]) -> [SKIP][349] ([Intel XE#2890]) +24 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-dg2-set2: [SKIP][350] ([Intel XE#653]) -> [SKIP][351] ([Intel XE#2351] / [Intel XE#2890]) +5 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-dg2-set2: [SKIP][352] ([Intel XE#653]) -> [SKIP][353] ([Intel XE#783])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][354] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][355] ([Intel XE#653]) +12 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][356] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][357] ([Intel XE#658])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][358] ([Intel XE#1158]) -> [SKIP][359] ([Intel XE#2890])
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][360] ([Intel XE#2890]) -> [SKIP][361] ([Intel XE#653]) +27 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][362] ([Intel XE#2313]) -> [SKIP][363] ([Intel XE#3189]) +3 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2-set2: [SKIP][364] ([Intel XE#2423] / [i915#2575]) -> [FAIL][365] ([Intel XE#3312] / [Intel XE#3404])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_hdr@brightness-with-hdr.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][366] ([Intel XE#2890]) -> [SKIP][367] ([Intel XE#2925])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: [SKIP][368] ([Intel XE#2890]) -> [SKIP][369] ([Intel XE#2927]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][370] ([Intel XE#2423] / [i915#2575]) -> [SKIP][371] ([Intel XE#356])
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2-set2: [SKIP][372] ([Intel XE#455]) -> [SKIP][373] ([Intel XE#2423] / [i915#2575]) +10 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_panel_fitting@atomic-fastset.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [ABORT][374] ([Intel XE#3111]) -> [SKIP][375] ([Intel XE#2423] / [i915#2575])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [SKIP][376] ([Intel XE#2423] / [i915#2575]) -> [FAIL][377] ([Intel XE#616])
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_plane_cursor@primary.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_plane_cursor@primary.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [FAIL][378] ([Intel XE#361]) -> [SKIP][379] ([Intel XE#2423] / [i915#2575])
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][380] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][381] ([Intel XE#2423] / [i915#2575])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][382] ([Intel XE#2423] / [i915#2575]) -> [SKIP][383] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][384] ([Intel XE#870]) -> [SKIP][385] ([Intel XE#2890])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][386] ([Intel XE#870]) -> [SKIP][387] ([Intel XE#3189])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: [SKIP][388] ([Intel XE#1129]) -> [SKIP][389] ([Intel XE#2351] / [Intel XE#2890])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_pm_dc@dc6-psr.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][390] ([Intel XE#1489]) -> [SKIP][391] ([Intel XE#2890]) +7 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][392] ([Intel XE#2890]) -> [SKIP][393] ([Intel XE#1489]) +10 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-dg2-set2: [SKIP][394] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][395] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][396] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][397] ([Intel XE#2351] / [Intel XE#2890]) +4 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][398] ([Intel XE#2890]) -> [SKIP][399] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-primary-page-flip:
- shard-dg2-set2: [SKIP][400] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][401] ([Intel XE#2351])
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_psr@psr-primary-page-flip.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr2-dpms:
- shard-dg2-set2: [SKIP][402] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][403] ([Intel XE#2890]) +5 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_psr@psr2-dpms.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_psr@psr2-dpms.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][404] ([Intel XE#1127]) -> [SKIP][405] ([Intel XE#2423] / [i915#2575])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: [SKIP][406] -> [SKIP][407] ([Intel XE#829])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-dg2-set2: [SKIP][408] -> [SKIP][409] ([Intel XE#829])
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][410] ([Intel XE#2426]) -> [FAIL][411] ([Intel XE#1729])
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-set2: [SKIP][412] ([Intel XE#2423] / [i915#2575]) -> [FAIL][413] ([Intel XE#1729])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][414] ([Intel XE#2423] / [i915#2575]) -> [SKIP][415] ([Intel XE#330])
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][416] ([Intel XE#2168]) -> [SKIP][417] ([Intel XE#2423] / [i915#2575])
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_vrr@cmrr.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_vrr@cmrr.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][418] ([Intel XE#2423] / [i915#2575]) -> [SKIP][419] ([Intel XE#2168])
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_vrr@lobf.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-464/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][420] ([Intel XE#2423] / [i915#2575]) -> [SKIP][421] ([Intel XE#756])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2-set2: [SKIP][422] ([Intel XE#756]) -> [SKIP][423] ([Intel XE#2423] / [i915#2575])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_writeback@writeback-invalid-parameters.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][424] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][425] ([Intel XE#2423] / [i915#2575])
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-off.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][426] ([Intel XE#1130]) -> [SKIP][427] ([Intel XE#1280] / [Intel XE#455])
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][428] ([Intel XE#1123]) -> [SKIP][429] ([Intel XE#1130])
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][430] ([Intel XE#1130]) -> [SKIP][431] ([Intel XE#1123]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: [SKIP][432] ([Intel XE#1130]) -> [SKIP][433] ([Intel XE#1126])
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-dg2-set2: [FAIL][434] ([Intel XE#2667]) -> [SKIP][435] ([Intel XE#1130])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][436] ([Intel XE#2905]) -> [SKIP][437] ([Intel XE#1130]) +9 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@xe_eudebug@basic-close.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: [SKIP][438] ([Intel XE#1130]) -> [SKIP][439] ([Intel XE#2905]) +8 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [SKIP][440] ([Intel XE#1130]) -> [FAIL][441] ([Intel XE#1000])
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: [SKIP][442] ([Intel XE#288]) -> [SKIP][443] ([Intel XE#1130]) +19 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@xe_exec_fault_mode@once-rebind-imm.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][444] ([Intel XE#1130]) -> [SKIP][445] ([Intel XE#288]) +24 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][446] ([Intel XE#2360]) -> [SKIP][447] ([Intel XE#1130])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][448] ([Intel XE#1130]) -> [SKIP][449] ([Intel XE#255])
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_huc_copy@huc_copy.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-466/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: [SKIP][450] ([Intel XE#2833]) -> [SKIP][451] ([Intel XE#1192] / [Intel XE#3026])
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-1/igt@xe_live_ktest@xe_eudebug.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][452] ([Intel XE#2541]) -> [SKIP][453] ([Intel XE#1130]) +6 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-433/igt@xe_oa@polling-small-buf.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_oa@polling-small-buf.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: [SKIP][454] ([Intel XE#1130]) -> [SKIP][455] ([Intel XE#2541]) +6 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_oa@syncs-userptr-wait-cfg.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-435/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][456] ([Intel XE#979]) -> [SKIP][457] ([Intel XE#1130])
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][458] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][459] ([Intel XE#1130])
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@xe_pm@d3cold-mmap-system.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][460] ([Intel XE#1130]) -> [SKIP][461] ([Intel XE#2284] / [Intel XE#366])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [ABORT][462] ([Intel XE#1358] / [Intel XE#1794]) -> [SKIP][463] ([Intel XE#1130])
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][464] ([Intel XE#1130]) -> [SKIP][465] ([Intel XE#944]) +2 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-433/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: [SKIP][466] ([Intel XE#944]) -> [SKIP][467] ([Intel XE#1130]) +2 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[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#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1630]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1630
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026
[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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3111
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3403]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3403
[Intel XE#3404]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3404
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8101 -> IGTPW_12072
* Linux: xe-2190-5521311ecd7ffbb0adf016dbf83bd0165fc94d25 -> xe-2193-5d94c05a3b9625a569b92a4ed208ce04e241f122
IGTPW_12072: ba67f6a70cd24baa8b58795c7bd22bd2b8028525 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8101: 1235576931b5abdcb2c755672d194fb540fa6fb1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2190-5521311ecd7ffbb0adf016dbf83bd0165fc94d25: 5521311ecd7ffbb0adf016dbf83bd0165fc94d25
xe-2193-5d94c05a3b9625a569b92a4ed208ce04e241f122: 5d94c05a3b9625a569b92a4ed208ce04e241f122
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/index.html
[-- Attachment #2: Type: text/html, Size: 140819 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ i915.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev4)
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (6 preceding siblings ...)
2024-11-10 0:33 ` ✗ CI.xeFULL: " Patchwork
@ 2024-11-25 21:35 ` Patchwork
2024-11-26 16:36 ` Kamil Konieczny
2024-11-25 21:43 ` ✗ Xe.CI.BAT: " Patchwork
2024-11-26 0:12 ` ✗ Xe.CI.Full: " Patchwork
9 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2024-11-25 21:35 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev4)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8125 -> IGTPW_12191
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12191 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12191, 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_12191/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12191:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- fi-pnv-d510: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/fi-pnv-d510/igt@i915_selftest@live.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_flip@basic-flip-vs-wf_vblank:
- {bat-mtlp-9}: [PASS][2] -> [FAIL][3] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
New tests
---------
New tests have been introduced between IGT_8125 and IGTPW_12191:
### New IGT tests (1) ###
* igt@i915_selftest:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_12191 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-apl-1: [PASS][4] -> [INCOMPLETE][5] ([i915#12904]) +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-apl-1/igt@dmabuf@all-tests.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-apl-1/igt@dmabuf@all-tests.html
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [PASS][6] -> [INCOMPLETE][7] ([i915#12904]) +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [PASS][8] -> [FAIL][9] ([i915#12903])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][10] -> [ABORT][11] ([i915#12061]) +1 other test abort
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-mtlp-8/igt@i915_selftest@live.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-mtlp-8/igt@i915_selftest@live.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [FAIL][12] ([i915#12903]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@workarounds:
- {bat-arls-6}: [ABORT][14] ([i915#12061]) -> [PASS][15] +1 other test pass
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-arls-6/igt@i915_selftest@live@workarounds.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-arls-6/igt@i915_selftest@live@workarounds.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#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8125 -> IGTPW_12191
CI-20190529: 20190529
CI_DRM_15743: 6510562075d8541c218e72188f9ef339f8ba371f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12191: ae4ed220a690ce77a7679ebfcfc5ae36c7cc9d3b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Xe.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev4)
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (7 preceding siblings ...)
2024-11-25 21:35 ` ✗ i915.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev4) Patchwork
@ 2024-11-25 21:43 ` Patchwork
2024-11-26 16:38 ` Kamil Konieczny
2024-11-26 0:12 ` ✗ Xe.CI.Full: " Patchwork
9 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2024-11-25 21:43 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7218 bytes --]
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev4)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8125_BAT -> XEIGTPW_12191_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12191_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12191_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_12191_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_8125/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
* igt@xe_wedged@basic-wedged:
- bat-pvc-2: NOTRUN -> [DMESG-WARN][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-pvc-2/igt@xe_wedged@basic-wedged.html
- bat-atsm-2: NOTRUN -> [DMESG-WARN][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-atsm-2/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-at-any-timeout:
- bat-adlp-vf: NOTRUN -> [ABORT][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-adlp-vf/igt@xe_wedged@wedged-at-any-timeout.html
- bat-dg2-oem2: NOTRUN -> [ABORT][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-dg2-oem2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-atsm-2: NOTRUN -> [ABORT][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-atsm-2/igt@xe_wedged@wedged-at-any-timeout.html
Known issues
------------
Here are the changes found in XEIGTPW_12191_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-adlp-7: [PASS][8] -> [DMESG-WARN][9] ([Intel XE#3517])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-adlp-7: [PASS][10] -> [SKIP][11] ([Intel XE#455]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_live_ktest@xe_migrate:
- bat-lnl-2: [PASS][12] -> [SKIP][13] ([Intel XE#1192]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html
- bat-lnl-1: [PASS][14] -> [SKIP][15] ([Intel XE#1192]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
* igt@xe_wedged@basic-wedged:
- bat-adlp-vf: NOTRUN -> [DMESG-WARN][16] ([Intel XE#2919])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-adlp-vf/igt@xe_wedged@basic-wedged.html
- bat-lnl-1: NOTRUN -> [DMESG-WARN][17] ([Intel XE#2919] / [Intel XE#3119])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-lnl-1/igt@xe_wedged@basic-wedged.html
- bat-bmg-2: NOTRUN -> [DMESG-WARN][18] ([Intel XE#2919])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-bmg-2/igt@xe_wedged@basic-wedged.html
- bat-bmg-1: NOTRUN -> [DMESG-WARN][19] ([Intel XE#2919])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-bmg-1/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_12191/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_12191/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_12191/bat-dg2-oem2/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-at-any-timeout:
- bat-pvc-2: NOTRUN -> [ABORT][23] ([Intel XE#3420])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-pvc-2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-bmg-2: NOTRUN -> [ABORT][24] ([Intel XE#3421])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
- bat-bmg-1: NOTRUN -> [ABORT][25] ([Intel XE#3421])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-bmg-1/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_8125/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/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_8125/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
[Intel XE#3420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3420
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8125 -> IGTPW_12191
IGTPW_12191: ae4ed220a690ce77a7679ebfcfc5ae36c7cc9d3b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/index.html
[-- Attachment #2: Type: text/html, Size: 8889 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Xe.CI.Full: failure for Ignore more warns in xe_wedged tests (rev4)
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
` (8 preceding siblings ...)
2024-11-25 21:43 ` ✗ Xe.CI.BAT: " Patchwork
@ 2024-11-26 0:12 ` Patchwork
2024-11-26 16:40 ` Kamil Konieczny
9 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2024-11-26 0:12 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 135118 bytes --]
== Series Details ==
Series: Ignore more warns in xe_wedged tests (rev4)
URL : https://patchwork.freedesktop.org/series/140511/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8125_full -> XEIGTPW_12191_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12191_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12191_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_12191_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic@crtc-invalid-params-fence@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][1] +3 other tests incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-3/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-dp-2.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [PASS][2] -> [SKIP][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-lnl: [PASS][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@xe_eudebug_online@pagefault-write:
- shard-bmg: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-lnl: [PASS][7] -> [ABORT][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-1/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [ABORT][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][10] ([Intel XE#2136]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [DMESG-FAIL][12] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-FAIL][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
New tests
---------
New tests have been introduced between XEIGT_8125_full and XEIGTPW_12191_full:
### New IGT tests (1) ###
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.08] s
Known issues
------------
Here are the changes found in XEIGTPW_12191_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1885])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: NOTRUN -> [INCOMPLETE][15] ([Intel XE#3468])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@core_hotunplug@unplug-rescan.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#3453])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@fbdev@eof:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2134])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@fbdev@eof.html
* igt@fbdev@unaligned-write:
- shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2134])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@fbdev@unaligned-write.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@fbdev@unaligned-write.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][21] -> [FAIL][22] ([Intel XE#827]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-dg2-set2: [PASS][23] -> [SKIP][24] ([Intel XE#2423] / [i915#2575]) +60 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2370])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2327]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#2136]) +23 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [DMESG-WARN][29] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [PASS][30] -> [DMESG-FAIL][31] ([Intel XE#3468]) +11 other tests dmesg-fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#607])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1124]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2328])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#610])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#2191])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#367])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#2907])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][42] ([Intel XE#3468]) +1 other test dmesg-warn
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][43] ([Intel XE#3468])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#3432]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#787]) +101 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2887]) +12 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-negative:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2325])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#373])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2252]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2341])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#308]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2321]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#2423] / [i915#2575]) +56 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#309])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#2423]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_dp_aux_dev.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#3070])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled:
- shard-bmg: [PASS][63] -> [DMESG-FAIL][64] ([Intel XE#2705])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2244])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-bmg: [PASS][66] -> [DMESG-WARN][67] ([Intel XE#1727] / [Intel XE#2955] / [Intel XE#3468])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2316]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][70] ([Intel XE#3468]) +7 other tests dmesg-fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][71] -> [DMESG-FAIL][72] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][73] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible@d-dp2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1:
- shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#886]) +3 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html
* igt@kms_flip@plain-flip-ts-check:
- shard-dg2-set2: [PASS][76] -> [FAIL][77] ([Intel XE#886])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_flip@plain-flip-ts-check.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip@plain-flip-ts-check@b-hdmi-a6:
- shard-dg2-set2: [PASS][78] -> [FAIL][79] ([Intel XE#3477] / [Intel XE#886]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_flip@plain-flip-ts-check@b-hdmi-a6.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_flip@plain-flip-ts-check@b-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#455]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2293]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#651]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +25 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [FAIL][85] ([Intel XE#2333]) +8 other tests fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2136]) +39 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#656]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2136] / [Intel XE#2351]) +19 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2313]) +15 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2312]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#346])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_lease@page-flip-implicit-plane@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][95] ([Intel XE#1727])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_lease@page-flip-implicit-plane@pipe-a-hdmi-a-6.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [PASS][96] -> [INCOMPLETE][97] ([Intel XE#1035] / [Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_plane@plane-panning-bottom-right-suspend.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256:
- shard-bmg: [PASS][98] -> [DMESG-WARN][99] ([Intel XE#2705] / [Intel XE#3468])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [PASS][100] -> [SKIP][101] ([Intel XE#2685] / [Intel XE#3307])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_plane_scaling@intel-max-src-size.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +14 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-bmg: [PASS][103] -> [DMESG-WARN][104] ([Intel XE#1727] / [Intel XE#2566] / [Intel XE#3468])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#870])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#3309])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-bmg: [PASS][107] -> [DMESG-WARN][108] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-warn
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_pm_dc@dc9-dpms.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_pm_dc@dc9-dpms.html
- shard-dg2-set2: [PASS][109] -> [DMESG-WARN][110] ([Intel XE#1727] / [Intel XE#3468])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_pm_dc@dc9-dpms.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2446])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#1439] / [Intel XE#3141])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2-set2: [PASS][113] -> [SKIP][114] ([Intel XE#2446])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-lnl: [PASS][115] -> [DMESG-WARN][116] ([Intel XE#2042])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@kms_pm_rpm@universal-planes-dpms.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-5/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-68:
- shard-lnl: [PASS][117] -> [DMESG-WARN][118] ([Intel XE#3184]) +1 other test dmesg-warn
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@kms_pm_rpm@universal-planes-dpms@plane-68.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-5/igt@kms_pm_rpm@universal-planes-dpms@plane-68.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#1489]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2387]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-lnl: [PASS][124] -> [FAIL][125] ([Intel XE#2808]) +1 other test fail
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_psr@psr2-cursor-plane-move.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-4/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2234])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2330])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_sequence@get-idle:
- shard-bmg: NOTRUN -> [DMESG-WARN][128] ([Intel XE#3468]) +31 other tests dmesg-warn
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_sequence@get-idle.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#2883]) +2 other tests fail
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2168])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_vrr@cmrr.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1499])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#756])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#1091] / [Intel XE#2849])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@testdisplay:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2423])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@testdisplay.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2905]) +8 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][137] ([Intel XE#1473])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_balancer@twice-virtual-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1130]) +78 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2322]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#288]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html
* igt@xe_exec_sip_eudebug@breakpoint-waitsip:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2905]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0:
- shard-bmg: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#3468]) +72 other tests dmesg-warn
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
* igt@xe_exec_threads@threads-bal-userptr-invalidate:
- shard-dg2-set2: [PASS][144] -> [DMESG-WARN][145] ([Intel XE#1727])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_exec_threads@threads-bal-userptr-invalidate.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@xe_exec_threads@threads-bal-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [PASS][146] -> [DMESG-WARN][147] ([Intel XE#3467]) +1 other test dmesg-warn
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-bmg: [PASS][148] -> [DMESG-WARN][149] ([Intel XE#3343] / [Intel XE#3468]) +1 other test dmesg-warn
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/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_guc_relay_init:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][150] ([Intel XE#3343])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
- shard-bmg: NOTRUN -> [DMESG-WARN][151] ([Intel XE#3343])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][152] ([Intel XE#3467] / [Intel XE#3468])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: NOTRUN -> [FAIL][153] ([Intel XE#3499])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [PASS][154] -> [SKIP][155] ([Intel XE#1192])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_module_load@load:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2457])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@xe_module_load@load.html
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#378])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@xe_module_load@load.html
* igt@xe_module_load@unload:
- shard-bmg: NOTRUN -> [DMESG-WARN][158] ([Intel XE#3467])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@xe_module_load@unload.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#3573])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2284]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: [PASS][161] -> [DMESG-WARN][162] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-prefetch.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: NOTRUN -> [DMESG-WARN][163] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [PASS][164] -> [DMESG-WARN][165] ([Intel XE#3468] / [Intel XE#569])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_pm@s3-vm-bind-userptr.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#3342])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: [PASS][167] -> [SKIP][168] ([Intel XE#1130]) +128 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [FAIL][169] ([Intel XE#3249]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@core_setmaster@master-drop-set-root.html
* igt@kms_cursor_crc@cursor-onscreen-128x128:
- shard-bmg: [DMESG-FAIL][171] ([Intel XE#3468]) -> [PASS][172] +19 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [INCOMPLETE][173] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][174] +4 other tests pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][175] ([Intel XE#3468]) -> [PASS][176]
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-6.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][177] ([Intel XE#3468]) -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][179] ([Intel XE#2291]) -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2-set2: [SKIP][181] ([Intel XE#309]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][183] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [SKIP][185] ([Intel XE#2316]) -> [PASS][186] +4 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@absolute-wf_vblank@a-dp2:
- shard-bmg: [DMESG-FAIL][187] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][188] +2 other tests pass
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@absolute-wf_vblank@a-dp2.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_flip@absolute-wf_vblank@a-dp2.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-bmg: [DMESG-WARN][189] -> [PASS][190] +1 other test pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][191] ([Intel XE#886]) -> [PASS][192] +3 other tests pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [SKIP][193] ([Intel XE#2136]) -> [PASS][194] +20 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-bmg: [DMESG-WARN][195] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][196] +4 other tests pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][197] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][198] +2 other tests pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][199] ([Intel XE#656]) -> [PASS][200] +1 other test pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-bmg: [DMESG-FAIL][201] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_hdr@bpc-switch-suspend.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-bmg: [INCOMPLETE][203] ([Intel XE#1035] / [Intel XE#2566] / [Intel XE#3468]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_plane@pixel-format-source-clamping.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][205] ([Intel XE#718]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-dg2-set2: [SKIP][207] ([Intel XE#2446]) -> [PASS][208] +2 other tests pass
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2-set2: [SKIP][209] ([Intel XE#2423] / [i915#2575]) -> [PASS][210] +73 other tests pass
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [FAIL][211] ([Intel XE#899]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@xe_exec_basic@many-execqueues-bindexecqueue:
- shard-lnl: [FAIL][213] -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_exec_basic@many-execqueues-bindexecqueue.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-1/igt@xe_exec_basic@many-execqueues-bindexecqueue.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-dg2-set2: [SKIP][215] ([Intel XE#1130]) -> [PASS][216] +116 other tests pass
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-basic.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_fault_mode@twice-bindexecqueue:
- shard-bmg: [DMESG-WARN][217] ([Intel XE#1727]) -> [PASS][218] +3 other tests pass
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html
* igt@xe_exec_threads@threads-mixed-basic:
- shard-lnl: [DMESG-WARN][219] -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-4/igt@xe_exec_threads@threads-mixed-basic.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-3/igt@xe_exec_threads@threads-mixed-basic.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [DMESG-WARN][221] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: [DMESG-WARN][223] ([Intel XE#3467]) -> [PASS][224] +2 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [DMESG-WARN][225] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][226]
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_live_ktest@xe_mocs:
- shard-lnl: [SKIP][227] ([Intel XE#1192]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@xe_live_ktest@xe_mocs.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-3/igt@xe_live_ktest@xe_mocs.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [FAIL][229] ([Intel XE#2514]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-dg2-set2: [DMESG-WARN][231] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_pm@d3hot-mmap-vram.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [DMESG-WARN][233] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][234] +1 other test pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][235] ([Intel XE#958]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
- shard-bmg: [DMESG-WARN][237] ([Intel XE#3468]) -> [PASS][238] +136 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
#### Warnings ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-dg2-set2: [INCOMPLETE][239] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][240] ([Intel XE#1885])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][241] ([Intel XE#623]) -> [SKIP][242] ([Intel XE#2423] / [i915#2575])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_atomic_interruptible@legacy-setmode:
- shard-bmg: [DMESG-WARN][243] ([Intel XE#3468]) -> [DMESG-WARN][244] ([Intel XE#1727] / [Intel XE#3468])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_atomic_interruptible@legacy-setmode.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_atomic_interruptible@legacy-setmode.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][245] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][246] ([Intel XE#316]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][247] ([Intel XE#2136]) -> [SKIP][248] ([Intel XE#316]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][249] ([Intel XE#316]) -> [SKIP][250] ([Intel XE#2136])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: [DMESG-FAIL][251] ([Intel XE#3468]) -> [DMESG-WARN][252] ([Intel XE#3468])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][253] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][254] ([Intel XE#619])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][255] ([Intel XE#610]) -> [SKIP][256] ([Intel XE#2136])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][257] ([Intel XE#2136]) -> [SKIP][258] ([Intel XE#1124]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][259] ([Intel XE#2136]) -> [SKIP][260] ([Intel XE#607])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/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][261] ([Intel XE#1124]) -> [SKIP][262] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/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-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][263] ([Intel XE#1124]) -> [SKIP][264] ([Intel XE#2136]) +8 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][265] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][266] ([Intel XE#1124]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][267] ([Intel XE#367]) -> [SKIP][268] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][269] ([Intel XE#2423] / [i915#2575]) -> [SKIP][270] ([Intel XE#367]) +4 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][271] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][272] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][273] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][274] ([Intel XE#787])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][275] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][276] ([Intel XE#2136]) +8 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][277] ([Intel XE#2907]) -> [SKIP][278] ([Intel XE#2136]) +4 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [SKIP][279] ([Intel XE#2136]) -> [INCOMPLETE][280] ([Intel XE#3468])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][281] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][282] ([Intel XE#2136])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][283] ([Intel XE#2136]) -> [SKIP][284] ([Intel XE#455] / [Intel XE#787]) +14 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][285] ([Intel XE#2136]) -> [SKIP][286] ([Intel XE#2907])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [FAIL][287] ([Intel XE#616]) -> [SKIP][288] ([Intel XE#2136])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][289] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][291] ([Intel XE#2423] / [i915#2575]) -> [SKIP][292] ([Intel XE#306])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][293] ([Intel XE#306]) -> [SKIP][294] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_chamelium_color@gamma.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2-set2: [SKIP][295] ([Intel XE#2423] / [i915#2575]) -> [SKIP][296] ([Intel XE#373]) +10 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-dg2-set2: [SKIP][297] ([Intel XE#373]) -> [SKIP][298] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_chamelium_edid@hdmi-edid-read.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: [FAIL][299] ([Intel XE#1178]) -> [INCOMPLETE][300] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][301] ([Intel XE#2423] / [i915#2575]) -> [SKIP][302] ([Intel XE#455]) +4 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_content_protection@lic-type-1.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2-set2: [FAIL][303] ([Intel XE#1178]) -> [SKIP][304] ([Intel XE#2423] / [i915#2575])
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_content_protection@srm.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: [INCOMPLETE][305] ([Intel XE#2715]) -> [FAIL][306] ([Intel XE#1178]) +1 other test fail
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-3/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][307] ([Intel XE#1188]) -> [SKIP][308] ([Intel XE#2341])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_content_protection@uevent.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][309] ([Intel XE#2423] / [i915#2575]) -> [SKIP][310] ([Intel XE#308])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2-set2: [SKIP][311] ([Intel XE#309]) -> [SKIP][312] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2-set2: [SKIP][313] ([Intel XE#2423] / [i915#2575]) -> [SKIP][314] ([Intel XE#309])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][315] ([Intel XE#323]) -> [SKIP][316] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2:
- shard-bmg: [DMESG-FAIL][317] ([Intel XE#3468]) -> [FAIL][318] ([Intel XE#2141]) +2 other tests fail
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html
* igt@kms_draw_crc@draw-method-blt:
- shard-bmg: [DMESG-WARN][319] ([Intel XE#3468]) -> [DMESG-FAIL][320] ([Intel XE#3468])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_draw_crc@draw-method-blt.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_draw_crc@draw-method-blt.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2-set2: [SKIP][321] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][322] ([Intel XE#455])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][323] ([Intel XE#455]) -> [SKIP][324] ([Intel XE#2136]) +3 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][325] ([Intel XE#776]) -> [SKIP][326] ([Intel XE#2136])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][327] ([Intel XE#2136]) -> [SKIP][328] ([Intel XE#776])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][329] ([Intel XE#2423] / [i915#2575]) -> [SKIP][330] ([Intel XE#703])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][331] ([Intel XE#1135]) -> [SKIP][332] ([Intel XE#2423] / [i915#2575])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_feature_discovery@psr1.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-FAIL][333] ([Intel XE#3468]) -> [FAIL][334] ([Intel XE#2882]) +1 other test fail
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][335] ([Intel XE#3468]) -> [FAIL][336] ([Intel XE#3486])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][337] ([Intel XE#3468]) -> [FAIL][338] ([Intel XE#3321] / [Intel XE#3486])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][339] ([Intel XE#3468]) -> [FAIL][340] ([Intel XE#3321] / [Intel XE#3487]) +1 other test fail
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][341] ([Intel XE#3468]) -> [FAIL][342] ([Intel XE#2882])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-dg2-set2: [SKIP][343] ([Intel XE#310]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@2x-nonexisting-fb-interruptible.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-bmg: [INCOMPLETE][345] -> [SKIP][346] ([Intel XE#2293] / [Intel XE#2380])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: [INCOMPLETE][347] -> [SKIP][348] ([Intel XE#2293])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2-set2: [SKIP][349] ([Intel XE#455]) -> [SKIP][350] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-set2: [SKIP][351] ([Intel XE#2136]) -> [SKIP][352] ([Intel XE#455]) +2 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][353] ([Intel XE#2136]) -> [SKIP][354] ([Intel XE#656]) +5 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][355] ([Intel XE#2136]) -> [SKIP][356] ([Intel XE#651]) +16 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][357] ([Intel XE#656]) -> [SKIP][358] ([Intel XE#651])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][359] ([Intel XE#2312]) -> [SKIP][360] ([Intel XE#2311]) +10 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][361] -> [SKIP][362] ([Intel XE#2136]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
- shard-bmg: [DMESG-FAIL][363] ([Intel XE#3468]) -> [FAIL][364] ([Intel XE#2333]) +6 other tests fail
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
- shard-bmg: [INCOMPLETE][365] -> [FAIL][366] ([Intel XE#2333])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-bmg: [FAIL][367] ([Intel XE#2333]) -> [INCOMPLETE][368] ([Intel XE#3468])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][369] ([Intel XE#656]) -> [SKIP][370] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][371] ([Intel XE#2312]) -> [FAIL][372] ([Intel XE#2333]) +2 other tests fail
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][373] ([Intel XE#2136] / [Intel XE#2351]) -> [INCOMPLETE][374] ([Intel XE#1727])
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2-set2: [SKIP][375] ([Intel XE#2136]) -> [ABORT][376] ([Intel XE#3468])
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: [DMESG-FAIL][377] ([Intel XE#3468]) -> [SKIP][378] ([Intel XE#2312]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][379] ([Intel XE#2333]) -> [DMESG-FAIL][380] ([Intel XE#3468]) +6 other tests dmesg-fail
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [FAIL][381] ([Intel XE#2333]) -> [SKIP][382] ([Intel XE#2312]) +5 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][383] ([Intel XE#651]) -> [SKIP][384] ([Intel XE#2136]) +17 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][385] ([Intel XE#651]) -> [SKIP][386] ([Intel XE#656])
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][387] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][388] ([Intel XE#651]) +5 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][389] ([Intel XE#2311]) -> [SKIP][390] ([Intel XE#2312]) +15 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][391] ([Intel XE#651]) -> [SKIP][392] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][393] ([Intel XE#2136]) -> [SKIP][394] ([Intel XE#653]) +16 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][395] ([Intel XE#2312]) -> [SKIP][396] ([Intel XE#2313]) +11 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][397] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][398] ([Intel XE#653]) +8 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: [FAIL][399] ([Intel XE#2333]) -> [INCOMPLETE][400] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2:
- shard-bmg: [FAIL][401] ([Intel XE#2333]) -> [INCOMPLETE][402] ([Intel XE#1727] / [Intel XE#3468])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][403] ([Intel XE#653]) -> [SKIP][404] ([Intel XE#2136]) +23 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][405] ([Intel XE#653]) -> [SKIP][406] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][407] ([Intel XE#656]) -> [SKIP][408] ([Intel XE#2136]) +3 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][409] ([Intel XE#2313]) -> [SKIP][410] ([Intel XE#2312]) +8 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][411] ([Intel XE#653]) -> [SKIP][412] ([Intel XE#656])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][413] ([Intel XE#656]) -> [SKIP][414] ([Intel XE#653])
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][415] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][416] ([Intel XE#656])
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: [SKIP][417] ([Intel XE#2927]) -> [SKIP][418] ([Intel XE#2136])
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_joiner@basic-ultra-joiner.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][419] ([Intel XE#2136]) -> [SKIP][420] ([Intel XE#2925])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: [SKIP][421] ([Intel XE#2136]) -> [SKIP][422] ([Intel XE#2927])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_lease@page-flip-implicit-plane:
- shard-dg2-set2: [SKIP][423] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][424] ([Intel XE#1727])
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_lease@page-flip-implicit-plane.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_lease@page-flip-implicit-plane.html
* igt@kms_plane@pixel-format:
- shard-dg2-set2: [INCOMPLETE][425] ([Intel XE#1035] / [Intel XE#1727]) -> [SKIP][426] ([Intel XE#2423] / [i915#2575])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_plane@pixel-format.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_plane@pixel-format.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [FAIL][427] ([Intel XE#616]) -> [SKIP][428] ([Intel XE#2423] / [i915#2575])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_plane_cursor@primary.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_plane_cursor@primary.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][429] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][430] ([Intel XE#2423] / [i915#2575])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
- shard-bmg: [INCOMPLETE][431] -> [DMESG-WARN][432] ([Intel XE#3468])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- shard-bmg: [INCOMPLETE][433] -> [DMESG-WARN][434] ([Intel XE#2705] / [Intel XE#3468])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][435] ([Intel XE#2136]) -> [SKIP][436] ([Intel XE#870])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][437] ([Intel XE#2938]) -> [SKIP][438] ([Intel XE#2136])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_pm_backlight@brightness-with-dpms.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: [SKIP][439] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][440] ([Intel XE#908])
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: [SKIP][441] ([Intel XE#1129]) -> [SKIP][442] ([Intel XE#2136] / [Intel XE#2351])
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [DMESG-WARN][443] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][444] ([Intel XE#2446])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_pm_rpm@basic-pci-d3-state.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2-set2: [SKIP][445] ([Intel XE#2446]) -> [ABORT][446] ([Intel XE#3468])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][447] ([Intel XE#2136]) -> [SKIP][448] ([Intel XE#1489]) +2 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][449] ([Intel XE#1489]) -> [SKIP][450] ([Intel XE#2136]) +6 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][451] ([Intel XE#2136]) -> [SKIP][452] ([Intel XE#1122])
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][453] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][454] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][455] ([Intel XE#2136]) -> [SKIP][456] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-render.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-dg2-set2: [SKIP][457] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][458] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-blt.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][459] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][460] ([Intel XE#2136]) +12 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_psr@pr-cursor-plane-onoff.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][461] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][462] ([Intel XE#2939])
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][463] ([Intel XE#2423] / [i915#2575]) -> [SKIP][464] ([Intel XE#3414])
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_rotation_crc@bad-tiling.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][465] ([Intel XE#1127]) -> [SKIP][466] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][467] ([Intel XE#3414]) -> [SKIP][468] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][469] ([Intel XE#2426]) -> [SKIP][470] ([Intel XE#2509])
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][471] ([Intel XE#2423] / [i915#2575]) -> [SKIP][472] ([Intel XE#330])
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: [SKIP][473] ([Intel XE#455]) -> [SKIP][474] ([Intel XE#2423] / [i915#2575]) +10 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_vrr@flipline.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][475] ([Intel XE#756]) -> [SKIP][476] ([Intel XE#2423] / [i915#2575])
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][477] ([Intel XE#2423] / [i915#2575]) -> [SKIP][478] ([Intel XE#1091] / [Intel XE#2849])
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][479] ([Intel XE#1123]) -> [SKIP][480] ([Intel XE#1130])
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: [SKIP][481] ([Intel XE#1130]) -> [SKIP][482] ([Intel XE#1126])
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][483] ([Intel XE#2905]) -> [SKIP][484] ([Intel XE#1130]) +7 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_eudebug@basic-close.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-dg2-set2: [SKIP][485] ([Intel XE#1130]) -> [SKIP][486] ([Intel XE#2905]) +7 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_eudebug_online@basic-breakpoint.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [SKIP][487] ([Intel XE#1130]) -> [DMESG-WARN][488] ([Intel XE#1727])
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_evict@evict-beng-cm-threads-large.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-beng-large-external:
- shard-dg2-set2: [DMESG-WARN][489] -> [SKIP][490] ([Intel XE#1130])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_evict@evict-beng-large-external.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_evict@evict-beng-large-external.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-bmg: [FAIL][491] ([Intel XE#2364]) -> [DMESG-FAIL][492] ([Intel XE#3468])
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-6/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [TIMEOUT][493] ([Intel XE#1473] / [Intel XE#2472]) -> [DMESG-WARN][494] ([Intel XE#3468])
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_fault_mode@many-bindexecqueue-rebind:
- shard-dg2-set2: [SKIP][495] ([Intel XE#1130]) -> [SKIP][496] ([Intel XE#288]) +20 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch:
- shard-dg2-set2: [SKIP][497] ([Intel XE#288]) -> [SKIP][498] ([Intel XE#1130]) +19 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: [SKIP][499] ([Intel XE#2360]) -> [SKIP][500] ([Intel XE#1130])
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][501] ([Intel XE#1130]) -> [SKIP][502] ([Intel XE#2360])
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate:
- shard-dg2-set2: [DMESG-WARN][503] ([Intel XE#3515]) -> [SKIP][504] ([Intel XE#1130])
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-dg2-set2: [SKIP][505] ([Intel XE#1130]) -> [DMESG-WARN][506] ([Intel XE#3467]) +2 other tests dmesg-warn
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/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][507] ([Intel XE#3343]) -> [DMESG-WARN][508] ([Intel XE#3343] / [Intel XE#3468])
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-dg2-set2: [DMESG-WARN][509] ([Intel XE#3343]) -> [SKIP][510] ([Intel XE#1130])
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [DMESG-FAIL][511] ([Intel XE#3467]) -> [FAIL][512] ([Intel XE#3499])
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/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-dg2-set2: [DMESG-WARN][513] ([Intel XE#3467]) -> [SKIP][514] ([Intel XE#1130]) +1 other test skip
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [DMESG-WARN][515] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][516] ([Intel XE#3467])
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/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][517] ([Intel XE#3467]) -> [DMESG-WARN][518] ([Intel XE#3467] / [Intel XE#3468])
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_gt_freq@freq_suspend:
- shard-dg2-set2: [DMESG-WARN][519] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][520] ([Intel XE#1130])
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_gt_freq@freq_suspend.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_gt_freq@freq_suspend.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [INCOMPLETE][521] ([Intel XE#2998]) -> [SKIP][522] ([Intel XE#1192])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_live_ktest@xe_bo.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_eudebug:
- shard-dg2-set2: [SKIP][523] ([Intel XE#455]) -> [SKIP][524] ([Intel XE#1192])
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_live_ktest@xe_eudebug.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][525] ([Intel XE#1130]) -> [SKIP][526] ([Intel XE#560])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_media_fill@media-fill.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][527] ([Intel XE#3546]) -> [DMESG-WARN][528] ([Intel XE#3467]) +1 other test dmesg-warn
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_module_load@reload.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@xe_module_load@reload.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [DMESG-WARN][529] ([Intel XE#3467]) -> [FAIL][530] ([Intel XE#3546])
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_module_load@reload-no-display.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@syncs-ufence-wait:
- shard-dg2-set2: [SKIP][531] ([Intel XE#3573]) -> [SKIP][532] ([Intel XE#1130]) +3 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_oa@syncs-ufence-wait.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_oa@syncs-ufence-wait.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][533] ([Intel XE#1130]) -> [SKIP][534] ([Intel XE#3573]) +6 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][535] ([Intel XE#977]) -> [SKIP][536] ([Intel XE#1130])
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_pat@pat-index-xe2.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][537] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][538] ([Intel XE#1130])
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_pat@pat-index-xehpc.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [FAIL][539] ([Intel XE#1173]) -> [SKIP][540] ([Intel XE#1061])
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_peer2peer@write.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: [SKIP][541] ([Intel XE#1130]) -> [SKIP][542] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-436/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][543] ([Intel XE#2284]) -> [SKIP][544] ([Intel XE#1130])
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pm@d3cold-mocs.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-mocs:
- shard-dg2-set2: [SKIP][545] ([Intel XE#1130]) -> [DMESG-WARN][546] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_pm@s2idle-mocs.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-dg2-set2: [SKIP][547] ([Intel XE#1130]) -> [ABORT][548] ([Intel XE#1694] / [Intel XE#1794])
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-userptr.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][549] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][550] ([Intel XE#1130]) +1 other test skip
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [SKIP][551] ([Intel XE#1130]) -> [DMESG-WARN][552] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm@s3-exec-after.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-435/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [DMESG-WARN][553] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [ABORT][554] ([Intel XE#1794] / [Intel XE#3468])
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][555] ([Intel XE#944]) -> [SKIP][556] ([Intel XE#1130]) +1 other test skip
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: [SKIP][557] ([Intel XE#1130]) -> [SKIP][558] ([Intel XE#944]) +2 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-huc.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: [SKIP][559] ([Intel XE#3342]) -> [SKIP][560] ([Intel XE#1130])
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_tlb@basic-tlb:
- shard-dg2-set2: [FAIL][561] ([Intel XE#2922]) -> [SKIP][562] ([Intel XE#1130])
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_tlb@basic-tlb.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_tlb@basic-tlb.html
* igt@xe_vm@mixed-misaligned-binds-1611661312:
- shard-dg2-set2: [DMESG-WARN][563] ([Intel XE#1727]) -> [SKIP][564] ([Intel XE#1130]) +2 other tests skip
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_vm@mixed-misaligned-binds-1611661312.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_vm@mixed-misaligned-binds-1611661312.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [ABORT][565] ([Intel XE#3421]) -> [SKIP][566] ([Intel XE#1130])
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [ABORT][567] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][568] ([Intel XE#1130])
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_wedged@wedged-mode-toggle.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html
- shard-bmg: [DMESG-WARN][569] -> [DMESG-WARN][570] ([Intel XE#3468])
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_wedged@wedged-mode-toggle.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-2/igt@xe_wedged@wedged-mode-toggle.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[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#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#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2808]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2808
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[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#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[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#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[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#3477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3477
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8125 -> IGTPW_12191
IGTPW_12191: ae4ed220a690ce77a7679ebfcfc5ae36c7cc9d3b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/index.html
[-- Attachment #2: Type: text/html, Size: 174793 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ i915.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev4)
2024-11-25 21:35 ` ✗ i915.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev4) Patchwork
@ 2024-11-26 16:36 ` Kamil Konieczny
0 siblings, 0 replies; 16+ messages in thread
From: Kamil Konieczny @ 2024-11-26 16:36 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
Hi igt-dev,
On 2024-11-25 at 21:35:36 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: Ignore more warns in xe_wedged tests (rev4)
> URL : https://patchwork.freedesktop.org/series/140511/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from IGT_8125 -> IGTPW_12191
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_12191 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12191, 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_12191/index.html
>
> Participating hosts (45 -> 44)
> ------------------------------
>
> Missing (1): fi-snb-2520m
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_12191:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@i915_selftest@live:
> - fi-pnv-d510: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/fi-pnv-d510/igt@i915_selftest@live.html
>
Unrelated to xe test change, no need for respin as I will send new one soon.
Regards,
Kamil
>
> #### Suppressed ####
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * igt@kms_flip@basic-flip-vs-wf_vblank:
> - {bat-mtlp-9}: [PASS][2] -> [FAIL][3] +1 other test fail
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
>
>
> New tests
> ---------
>
> New tests have been introduced between IGT_8125 and IGTPW_12191:
>
> ### New IGT tests (1) ###
>
> * igt@i915_selftest:
> - Statuses :
> - Exec time: [None] s
>
>
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_12191 that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@dmabuf@all-tests:
> - bat-apl-1: [PASS][4] -> [INCOMPLETE][5] ([i915#12904]) +1 other test incomplete
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-apl-1/igt@dmabuf@all-tests.html
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-apl-1/igt@dmabuf@all-tests.html
>
> * igt@dmabuf@all-tests@dma_fence_chain:
> - fi-bsw-nick: [PASS][6] -> [INCOMPLETE][7] ([i915#12904]) +1 other test incomplete
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
>
> * igt@i915_pm_rpm@module-reload:
> - bat-rpls-4: [PASS][8] -> [FAIL][9] ([i915#12903])
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
>
> * igt@i915_selftest@live:
> - bat-mtlp-8: [PASS][10] -> [ABORT][11] ([i915#12061]) +1 other test abort
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-mtlp-8/igt@i915_selftest@live.html
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-mtlp-8/igt@i915_selftest@live.html
>
>
> #### Possible fixes ####
>
> * igt@i915_pm_rpm@module-reload:
> - bat-dg1-7: [FAIL][12] ([i915#12903]) -> [PASS][13]
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
>
> * igt@i915_selftest@live@workarounds:
> - {bat-arls-6}: [ABORT][14] ([i915#12061]) -> [PASS][15] +1 other test pass
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-arls-6/igt@i915_selftest@live@workarounds.html
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/bat-arls-6/igt@i915_selftest@live@workarounds.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#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
>
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_8125 -> IGTPW_12191
>
> CI-20190529: 20190529
> CI_DRM_15743: 6510562075d8541c218e72188f9ef339f8ba371f @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_12191: ae4ed220a690ce77a7679ebfcfc5ae36c7cc9d3b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12191/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ Xe.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev4)
2024-11-25 21:43 ` ✗ Xe.CI.BAT: " Patchwork
@ 2024-11-26 16:38 ` Kamil Konieczny
0 siblings, 0 replies; 16+ messages in thread
From: Kamil Konieczny @ 2024-11-26 16:38 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
Hi igt-dev,
On 2024-11-25 at 21:43:46 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: Ignore more warns in xe_wedged tests (rev4)
> URL : https://patchwork.freedesktop.org/series/140511/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from XEIGT_8125_BAT -> XEIGTPW_12191_BAT
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with XEIGTPW_12191_BAT absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12191_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_12191_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_8125/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
>
This is unrelated.
> * igt@xe_wedged@basic-wedged:
> - bat-pvc-2: NOTRUN -> [DMESG-WARN][3]
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-pvc-2/igt@xe_wedged@basic-wedged.html
> - bat-atsm-2: NOTRUN -> [DMESG-WARN][4]
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-atsm-2/igt@xe_wedged@basic-wedged.html
>
Above should be ignored by igt_runner but I made an error in regex, so I will
send new series soon.
> * igt@xe_wedged@wedged-at-any-timeout:
> - bat-adlp-vf: NOTRUN -> [ABORT][5]
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-adlp-vf/igt@xe_wedged@wedged-at-any-timeout.html
> - bat-dg2-oem2: NOTRUN -> [ABORT][6]
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-dg2-oem2/igt@xe_wedged@wedged-at-any-timeout.html
> - bat-atsm-2: NOTRUN -> [ABORT][7]
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-atsm-2/igt@xe_wedged@wedged-at-any-timeout.html
>
These are bugs, NULL pointer dereference.
Regards,
Kamil
>
> Known issues
> ------------
>
> Here are the changes found in XEIGTPW_12191_BAT that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@core_hotunplug@unbind-rebind:
> - bat-adlp-7: [PASS][8] -> [DMESG-WARN][9] ([Intel XE#3517])
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
>
> * igt@kms_psr@psr-sprite-plane-onoff:
> - bat-adlp-7: [PASS][10] -> [SKIP][11] ([Intel XE#455]) +1 other test skip
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html
>
> * igt@xe_live_ktest@xe_migrate:
> - bat-lnl-2: [PASS][12] -> [SKIP][13] ([Intel XE#1192]) +1 other test skip
> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html
> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html
> - bat-lnl-1: [PASS][14] -> [SKIP][15] ([Intel XE#1192]) +1 other test skip
> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
> [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
>
> * igt@xe_wedged@basic-wedged:
> - bat-adlp-vf: NOTRUN -> [DMESG-WARN][16] ([Intel XE#2919])
> [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-adlp-vf/igt@xe_wedged@basic-wedged.html
> - bat-lnl-1: NOTRUN -> [DMESG-WARN][17] ([Intel XE#2919] / [Intel XE#3119])
> [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-lnl-1/igt@xe_wedged@basic-wedged.html
> - bat-bmg-2: NOTRUN -> [DMESG-WARN][18] ([Intel XE#2919])
> [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-bmg-2/igt@xe_wedged@basic-wedged.html
> - bat-bmg-1: NOTRUN -> [DMESG-WARN][19] ([Intel XE#2919])
> [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-bmg-1/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_12191/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_12191/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_12191/bat-dg2-oem2/igt@xe_wedged@basic-wedged.html
>
> * igt@xe_wedged@wedged-at-any-timeout:
> - bat-pvc-2: NOTRUN -> [ABORT][23] ([Intel XE#3420])
> [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-pvc-2/igt@xe_wedged@wedged-at-any-timeout.html
> - bat-bmg-2: NOTRUN -> [ABORT][24] ([Intel XE#3421])
> [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
> - bat-bmg-1: NOTRUN -> [ABORT][25] ([Intel XE#3421])
> [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-bmg-1/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_8125/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
> [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/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_8125/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
> [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/bat-lnl-2/igt@xe_live_ktest@xe_bo.html
>
>
> [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
> [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
> [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
> [Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119
> [Intel XE#3420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3420
> [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
> [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517
> [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
>
>
> Build changes
> -------------
>
> * IGT: IGT_8125 -> IGTPW_12191
>
> IGTPW_12191: ae4ed220a690ce77a7679ebfcfc5ae36c7cc9d3b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ Xe.CI.Full: failure for Ignore more warns in xe_wedged tests (rev4)
2024-11-26 0:12 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-11-26 16:40 ` Kamil Konieczny
0 siblings, 0 replies; 16+ messages in thread
From: Kamil Konieczny @ 2024-11-26 16:40 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
Hi igt-dev,
On 2024-11-26 at 00:12:56 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: Ignore more warns in xe_wedged tests (rev4)
> URL : https://patchwork.freedesktop.org/series/140511/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from XEIGT_8125_full -> XEIGTPW_12191_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with XEIGTPW_12191_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12191_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_12191_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_atomic@crtc-invalid-params-fence@pipe-a-dp-2:
> - shard-bmg: NOTRUN -> [INCOMPLETE][1] +3 other tests incomplete
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-3/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-dp-2.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
> - shard-dg2-set2: [PASS][2] -> [SKIP][3]
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
>
> * igt@kms_psr@fbc-psr2-sprite-plane-move:
> - shard-lnl: [PASS][4] -> [FAIL][5] +1 other test fail
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-plane-move.html
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-plane-move.html
>
> * igt@xe_eudebug_online@pagefault-write:
> - shard-bmg: NOTRUN -> [SKIP][6]
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@xe_eudebug_online@pagefault-write.html
>
> * igt@xe_fault_injection@vm-create-fail-xe_pt_create:
> - shard-lnl: [PASS][7] -> [ABORT][8]
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-lnl-1/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
>
Above are unrelated.
> * igt@xe_wedged@wedged-at-any-timeout:
> - shard-bmg: NOTRUN -> [ABORT][9]
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.html
>
This is new bug.
>
> #### Warnings ####
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
> - shard-dg2-set2: [SKIP][10] ([Intel XE#2136]) -> [SKIP][11]
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
>
> * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
> - shard-bmg: [DMESG-FAIL][12] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-FAIL][13]
> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
>
Also unrelated to change in xe_wedged.
Regards,
Kamil
>
> New tests
> ---------
>
> New tests have been introduced between XEIGT_8125_full and XEIGTPW_12191_full:
>
> ### New IGT tests (1) ###
>
> * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-b-hdmi-a-6:
> - Statuses : 1 pass(s)
> - Exec time: [1.08] s
>
>
>
> Known issues
> ------------
>
> Here are the changes found in XEIGTPW_12191_full that come from known issues:
>
...cut...
> [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
> [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
> [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
>
>
> Build changes
> -------------
>
> * IGT: IGT_8125 -> IGTPW_12191
>
> IGTPW_12191: ae4ed220a690ce77a7679ebfcfc5ae36c7cc9d3b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12191/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ✗ CI.xeFULL: failure for Ignore more warns in xe_wedged tests (rev3)
2024-11-10 0:33 ` ✗ CI.xeFULL: " Patchwork
@ 2024-11-26 16:42 ` Kamil Konieczny
0 siblings, 0 replies; 16+ messages in thread
From: Kamil Konieczny @ 2024-11-26 16:42 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
Hi igt-dev,
On 2024-11-10 at 00:33:14 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: Ignore more warns in xe_wedged tests (rev3)
> URL : https://patchwork.freedesktop.org/series/140511/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from XEIGT_8101_full -> XEIGTPW_12072_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with XEIGTPW_12072_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12072_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_12072_full:
>
Below regressions are unrelated to change in xe_wedged test,
Regards,
Kamil
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@core_getversion@all-cards:
> - shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@core_getversion@all-cards.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@core_getversion@all-cards.html
>
> * igt@core_hotunplug@unbind-rebind:
> - shard-lnl: [PASS][3] -> [DMESG-WARN][4]
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-4/igt@core_hotunplug@unbind-rebind.html
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-1/igt@core_hotunplug@unbind-rebind.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
> - shard-dg2-set2: [PASS][5] -> [DMESG-WARN][6]
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
>
> * igt@kms_cursor_crc@cursor-random-128x128:
> - shard-dg2-set2: [PASS][7] -> [SKIP][8] +3 other tests skip
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_cursor_crc@cursor-random-128x128.html
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_cursor_crc@cursor-random-128x128.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
> - shard-dg2-set2: NOTRUN -> [SKIP][9] +3 other tests skip
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
>
> * igt@kms_psr@fbc-psr2-no-drrs:
> - shard-lnl: [PASS][10] -> [FAIL][11] +1 other test fail
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-lnl-4/igt@kms_psr@fbc-psr2-no-drrs.html
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-lnl-6/igt@kms_psr@fbc-psr2-no-drrs.html
>
> * igt@kms_rotation_crc@sprite-rotation-90:
> - shard-bmg: NOTRUN -> [SKIP][12]
> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-90.html
>
>
> #### Warnings ####
>
> * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
> - shard-dg2-set2: [SKIP][13] ([Intel XE#373]) -> [SKIP][14]
> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
> - shard-dg2-set2: [SKIP][15] ([Intel XE#455]) -> [SKIP][16]
> [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
> [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
> - shard-dg2-set2: [SKIP][17] ([Intel XE#2890]) -> [SKIP][18]
> [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
> [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
> - shard-dg2-set2: [SKIP][19] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][20]
> [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
> [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
> - shard-dg2-set2: [SKIP][21] ([Intel XE#653]) -> [SKIP][22]
> [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
> [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_hdr@static-toggle-dpms:
> - shard-dg2-set2: [SKIP][23] ([Intel XE#2423] / [i915#2575]) -> [SKIP][24] +1 other test skip
> [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-434/igt@kms_hdr@static-toggle-dpms.html
> [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_hdr@static-toggle-dpms.html
>
> * igt@kms_pm_backlight@basic-brightness:
> - shard-dg2-set2: [SKIP][25] ([Intel XE#870]) -> [SKIP][26]
> [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-464/igt@kms_pm_backlight@basic-brightness.html
> [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html
>
> * igt@kms_pm_dc@dc5-retention-flops:
> - shard-dg2-set2: [SKIP][27] ([Intel XE#3309]) -> [SKIP][28]
> [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8101/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html
> [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html
>
>
> Known issues
> ------------
>
> Here are the changes found in XEIGTPW_12072_full that come from known issues:
>
> ### IGT changes ###
...cut...
> [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
> [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
> [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
>
>
> Build changes
> -------------
>
> * IGT: IGT_8101 -> IGTPW_12072
> * Linux: xe-2190-5521311ecd7ffbb0adf016dbf83bd0165fc94d25 -> xe-2193-5d94c05a3b9625a569b92a4ed208ce04e241f122
>
> IGTPW_12072: ba67f6a70cd24baa8b58795c7bd22bd2b8028525 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8101: 1235576931b5abdcb2c755672d194fb540fa6fb1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-2190-5521311ecd7ffbb0adf016dbf83bd0165fc94d25: 5521311ecd7ffbb0adf016dbf83bd0165fc94d25
> xe-2193-5d94c05a3b9625a569b92a4ed208ce04e241f122: 5d94c05a3b9625a569b92a4ed208ce04e241f122
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12072/index.html
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-11-26 16:42 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-08 20:18 [PATCH i-g-t v3 0/2] Ignore more warns in xe_wedged tests Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 1/4] tests/intel/xe_wedged: Ignore more dmesg warnings Kamil Konieczny
2024-11-08 22:25 ` Rodrigo Vivi
2024-11-08 20:18 ` [PATCH i-g-t v3 2/4] HAX/DO_NOT_MERGE: xe-fast-feedback: test xe_wedged Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 3/4] lib/drmtest: invalidate cached fds after unbind Kamil Konieczny
2024-11-08 20:18 ` [PATCH i-g-t v3 4/4] lib/igt_sysfs: improve xe sysfs checks Kamil Konieczny
2024-11-08 21:23 ` ✗ Fi.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev3) Patchwork
2024-11-08 22:11 ` ✗ CI.xeBAT: " Patchwork
2024-11-10 0:33 ` ✗ CI.xeFULL: " Patchwork
2024-11-26 16:42 ` Kamil Konieczny
2024-11-25 21:35 ` ✗ i915.CI.BAT: failure for Ignore more warns in xe_wedged tests (rev4) Patchwork
2024-11-26 16:36 ` Kamil Konieczny
2024-11-25 21:43 ` ✗ Xe.CI.BAT: " Patchwork
2024-11-26 16:38 ` Kamil Konieczny
2024-11-26 0:12 ` ✗ Xe.CI.Full: " Patchwork
2024-11-26 16:40 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox