* [PATCH i-g-t 0/3] lib: Add NVL-P and WCL support
@ 2026-03-11 5:49 himanshu.girotra
2026-03-11 5:49 ` [PATCH i-g-t 1/3] lib/pciids: sync with kernel commit be07d8f707e4 himanshu.girotra
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: himanshu.girotra @ 2026-03-11 5:49 UTC (permalink / raw)
To: kamil.konieczny, igt-dev
From: Himanshu Girotra <himanshu.girotra@intel.com>
This series adds NVL-P (Novalake-P) and WildcatLake platform
support to IGT.
Patch 1 syncs pciids.h with upstream kernel up to
commit be07d8f707e4 ("drm/xe/nvlp: Add NVL-P platform definition"),
following the established pattern of keeping pciids.h as a direct
copy of include/drm/intel/pciids.h from the kernel.
Patch 2 adds the device descriptor and platform detection macros
for NVL-P.
Patch 3 adds WildcatLake support. WCL was previously consumed
under INTEL_PTL_IDS but now has dedicated PCI IDs following
commit 32620e176443 ("drm/pcids: Split PTL pciids group
to make wcl subplatform").
Changes in v2:
- Add patch 3: WildcatLake support (Kamil Konieczny)
This series supersedes the incorrectly threaded earlier submission:
https://patchwork.freedesktop.org/series/162971/
Himanshu Girotra (3):
lib/pciids: sync with upstream kernel
lib: Add NVL-P support
lib: Add WildcatLake support
lib/intel_chipset.h | 4 ++++
lib/intel_device_info.c | 27 +++++++++++++++++++++++++++
lib/pciids.h | 19 +++++++++++++++++--
3 files changed, 48 insertions(+), 2 deletions(-)
--
2.50.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 1/3] lib/pciids: sync with kernel commit be07d8f707e4
2026-03-11 5:49 [PATCH i-g-t 0/3] lib: Add NVL-P and WCL support himanshu.girotra
@ 2026-03-11 5:49 ` himanshu.girotra
2026-03-11 5:49 ` [PATCH i-g-t 2/3] lib: Add NVL-P support himanshu.girotra
` (5 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: himanshu.girotra @ 2026-03-11 5:49 UTC (permalink / raw)
To: kamil.konieczny, igt-dev
From: Himanshu Girotra <himanshu.girotra@intel.com>
Synchronize PCI IDs with drm-next kernel up to be07d8f707e4,
which includes the following changes:
commit be07d8f707e4 ("drm/xe/nvlp: Add NVL-P platform definition")
commit 32620e176443 ("drm/pcids: Split PTL pciids group to make wcl subplatform")
commit aaecfadc22cc ("drm/intel/bmg: Allow device ID usage with single-argument macros")
Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/pciids.h | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/lib/pciids.h b/lib/pciids.h
index 6e53fb4cd..33b91cb2e 100644
--- a/lib/pciids.h
+++ b/lib/pciids.h
@@ -861,7 +861,7 @@
MACRO__(0xE216, ## __VA_ARGS__)
#define INTEL_BMG_IDS(MACRO__, ...) \
- INTEL_BMG_G21_IDS(MACRO__, __VA_ARGS__), \
+ INTEL_BMG_G21_IDS(MACRO__, ## __VA_ARGS__), \
MACRO__(0xE220, ## __VA_ARGS__), \
MACRO__(0xE221, ## __VA_ARGS__), \
MACRO__(0xE222, ## __VA_ARGS__), \
@@ -880,7 +880,10 @@
MACRO__(0xB08F, ## __VA_ARGS__), \
MACRO__(0xB090, ## __VA_ARGS__), \
MACRO__(0xB0A0, ## __VA_ARGS__), \
- MACRO__(0xB0B0, ## __VA_ARGS__), \
+ MACRO__(0xB0B0, ## __VA_ARGS__)
+
+/* WCL */
+#define INTEL_WCL_IDS(MACRO__, ...) \
MACRO__(0xFD80, ## __VA_ARGS__), \
MACRO__(0xFD81, ## __VA_ARGS__)
@@ -897,4 +900,16 @@
#define INTEL_CRI_IDS(MACRO__, ...) \
MACRO__(0x674C, ## __VA_ARGS__)
+/* NVL-P */
+#define INTEL_NVLP_IDS(MACRO__, ...) \
+ MACRO__(0xD750, ## __VA_ARGS__), \
+ MACRO__(0xD751, ## __VA_ARGS__), \
+ MACRO__(0xD752, ## __VA_ARGS__), \
+ MACRO__(0xD753, ## __VA_ARGS__), \
+ MACRO__(0XD754, ## __VA_ARGS__), \
+ MACRO__(0XD755, ## __VA_ARGS__), \
+ MACRO__(0XD756, ## __VA_ARGS__), \
+ MACRO__(0XD757, ## __VA_ARGS__), \
+ MACRO__(0xD75F, ## __VA_ARGS__)
+
#endif /* __PCIIDS_H__ */
--
2.50.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH i-g-t 2/3] lib: Add NVL-P support
2026-03-11 5:49 [PATCH i-g-t 0/3] lib: Add NVL-P and WCL support himanshu.girotra
2026-03-11 5:49 ` [PATCH i-g-t 1/3] lib/pciids: sync with kernel commit be07d8f707e4 himanshu.girotra
@ 2026-03-11 5:49 ` himanshu.girotra
2026-03-11 6:17 ` Shekhar Chauhan
2026-03-11 5:49 ` [PATCH i-g-t 3/3] lib: Add WildcatLake support himanshu.girotra
` (4 subsequent siblings)
6 siblings, 1 reply; 9+ messages in thread
From: himanshu.girotra @ 2026-03-11 5:49 UTC (permalink / raw)
To: kamil.konieczny, igt-dev
From: Himanshu Girotra <himanshu.girotra@intel.com>
Add NVL-P device info.
Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com>
---
lib/intel_chipset.h | 2 ++
lib/intel_device_info.c | 14 ++++++++++++++
2 files changed, 16 insertions(+)
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index cc2225110..5df7349df 100644
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -94,6 +94,7 @@ struct intel_device_info {
bool is_battlemage : 1;
bool is_pantherlake : 1;
bool is_novalake_s: 1;
+ bool is_novalake_p : 1;
bool is_crescentisland: 1;
const struct intel_cmds_info *cmds_info;
@@ -213,6 +214,7 @@ void intel_check_pch(void);
#define IS_BATTLEMAGE(devid) (intel_get_device_info(devid)->is_battlemage)
#define IS_PANTHERLAKE(devid) (intel_get_device_info(devid)->is_pantherlake)
#define IS_NOVALAKE_S(devid) (intel_get_device_info(devid)->is_novalake_s)
+#define IS_NOVALAKE_P(devid) (intel_get_device_info(devid)->is_novalake_p)
#define IS_CRESCENTISLAND(devid) (intel_get_device_info(devid)->is_crescentisland)
#define IS_GEN(devid, x) (intel_get_device_info(devid)->graphics_ver == x)
diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
index 89fa6788f..b44b24223 100644
--- a/lib/intel_device_info.c
+++ b/lib/intel_device_info.c
@@ -551,6 +551,18 @@ static const struct intel_device_info intel_novalake_s_info = {
.cmds_info = &xe2_cmds_info,
};
+static const struct intel_device_info intel_novalake_p_info = {
+ .graphics_ver = 35,
+ .graphics_rel = 10,
+ .display_ver = 35,
+ .has_4tile = true,
+ .has_oam = true,
+ .has_flatccs = true,
+ .is_novalake_p = true,
+ .codename = "novalake_p",
+ .cmds_info = &xe2_cmds_info,
+};
+
static const struct intel_device_info intel_crescentisland_info = {
.graphics_ver = 35,
.graphics_rel = 11,
@@ -681,6 +693,8 @@ static const struct pci_id_match intel_device_match[] = {
INTEL_NVLS_IDS(INTEL_PCI_ID_INIT, &intel_novalake_s_info),
+ INTEL_NVLP_IDS(INTEL_PCI_ID_INIT, &intel_novalake_p_info),
+
INTEL_CRI_IDS(INTEL_PCI_ID_INIT, &intel_crescentisland_info),
INTEL_PCI_ID_INIT(PCI_MATCH_ANY, &intel_generic_info),
--
2.50.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH i-g-t 3/3] lib: Add WildcatLake support
2026-03-11 5:49 [PATCH i-g-t 0/3] lib: Add NVL-P and WCL support himanshu.girotra
2026-03-11 5:49 ` [PATCH i-g-t 1/3] lib/pciids: sync with kernel commit be07d8f707e4 himanshu.girotra
2026-03-11 5:49 ` [PATCH i-g-t 2/3] lib: Add NVL-P support himanshu.girotra
@ 2026-03-11 5:49 ` himanshu.girotra
2026-03-11 6:23 ` ✓ Xe.CI.BAT: success for lib: Add NVL-P and WCL support Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: himanshu.girotra @ 2026-03-11 5:49 UTC (permalink / raw)
To: kamil.konieczny, igt-dev
From: Himanshu Girotra <himanshu.girotra@intel.com>
WildcatLake was previously consumed under INTEL_PTL_IDS but now
has dedicated PCI IDs following kernel commit 32620e176443
("drm/pcids: Split PTL pciids group to make wcl subplatform").
Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com>
---
lib/intel_chipset.h | 2 ++
lib/intel_device_info.c | 13 +++++++++++++
2 files changed, 15 insertions(+)
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index 5df7349df..3fcc5b18d 100644
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -93,6 +93,7 @@ struct intel_device_info {
bool is_lunarlake : 1;
bool is_battlemage : 1;
bool is_pantherlake : 1;
+ bool is_wildcatlake : 1;
bool is_novalake_s: 1;
bool is_novalake_p : 1;
bool is_crescentisland: 1;
@@ -213,6 +214,7 @@ void intel_check_pch(void);
#define IS_LUNARLAKE(devid) (intel_get_device_info(devid)->is_lunarlake)
#define IS_BATTLEMAGE(devid) (intel_get_device_info(devid)->is_battlemage)
#define IS_PANTHERLAKE(devid) (intel_get_device_info(devid)->is_pantherlake)
+#define IS_WILDCATLAKE(devid) (intel_get_device_info(devid)->is_wildcatlake)
#define IS_NOVALAKE_S(devid) (intel_get_device_info(devid)->is_novalake_s)
#define IS_NOVALAKE_P(devid) (intel_get_device_info(devid)->is_novalake_p)
#define IS_CRESCENTISLAND(devid) (intel_get_device_info(devid)->is_crescentisland)
diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
index b44b24223..7c3070de5 100644
--- a/lib/intel_device_info.c
+++ b/lib/intel_device_info.c
@@ -539,6 +539,18 @@ static const struct intel_device_info intel_pantherlake_info = {
.cmds_info = &xe2_cmds_info,
};
+static const struct intel_device_info intel_wildcatlake_info = {
+ .graphics_ver = 30,
+ .graphics_rel = 0,
+ .display_ver = 30,
+ .has_4tile = true,
+ .has_flatccs = true,
+ .has_oam = true,
+ .is_wildcatlake = true,
+ .codename = "wildcatlake",
+ .cmds_info = &xe2_cmds_info,
+};
+
static const struct intel_device_info intel_novalake_s_info = {
.graphics_ver = 30,
.graphics_rel = 04,
@@ -690,6 +702,7 @@ static const struct pci_id_match intel_device_match[] = {
INTEL_BMG_IDS(INTEL_PCI_ID_INIT, &intel_battlemage_info),
INTEL_PTL_IDS(INTEL_PCI_ID_INIT, &intel_pantherlake_info),
+ INTEL_WCL_IDS(INTEL_PCI_ID_INIT, &intel_wildcatlake_info),
INTEL_NVLS_IDS(INTEL_PCI_ID_INIT, &intel_novalake_s_info),
--
2.50.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 2/3] lib: Add NVL-P support
2026-03-11 5:49 ` [PATCH i-g-t 2/3] lib: Add NVL-P support himanshu.girotra
@ 2026-03-11 6:17 ` Shekhar Chauhan
0 siblings, 0 replies; 9+ messages in thread
From: Shekhar Chauhan @ 2026-03-11 6:17 UTC (permalink / raw)
To: himanshu.girotra, kamil.konieczny, igt-dev
On 3/11/2026 11:19, himanshu.girotra@intel.com wrote:
> From: Himanshu Girotra <himanshu.girotra@intel.com>
>
> Add NVL-P device info.
>
> Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com>
LGTM,
Reviewed-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
> ---
> lib/intel_chipset.h | 2 ++
> lib/intel_device_info.c | 14 ++++++++++++++
> 2 files changed, 16 insertions(+)
>
> diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
> index cc2225110..5df7349df 100644
> --- a/lib/intel_chipset.h
> +++ b/lib/intel_chipset.h
> @@ -94,6 +94,7 @@ struct intel_device_info {
> bool is_battlemage : 1;
> bool is_pantherlake : 1;
> bool is_novalake_s: 1;
> + bool is_novalake_p : 1;
> bool is_crescentisland: 1;
>
> const struct intel_cmds_info *cmds_info;
> @@ -213,6 +214,7 @@ void intel_check_pch(void);
> #define IS_BATTLEMAGE(devid) (intel_get_device_info(devid)->is_battlemage)
> #define IS_PANTHERLAKE(devid) (intel_get_device_info(devid)->is_pantherlake)
> #define IS_NOVALAKE_S(devid) (intel_get_device_info(devid)->is_novalake_s)
> +#define IS_NOVALAKE_P(devid) (intel_get_device_info(devid)->is_novalake_p)
> #define IS_CRESCENTISLAND(devid) (intel_get_device_info(devid)->is_crescentisland)
>
> #define IS_GEN(devid, x) (intel_get_device_info(devid)->graphics_ver == x)
> diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
> index 89fa6788f..b44b24223 100644
> --- a/lib/intel_device_info.c
> +++ b/lib/intel_device_info.c
> @@ -551,6 +551,18 @@ static const struct intel_device_info intel_novalake_s_info = {
> .cmds_info = &xe2_cmds_info,
> };
>
> +static const struct intel_device_info intel_novalake_p_info = {
> + .graphics_ver = 35,
> + .graphics_rel = 10,
> + .display_ver = 35,
> + .has_4tile = true,
> + .has_oam = true,
> + .has_flatccs = true,
> + .is_novalake_p = true,
> + .codename = "novalake_p",
> + .cmds_info = &xe2_cmds_info,
> +};
> +
> static const struct intel_device_info intel_crescentisland_info = {
> .graphics_ver = 35,
> .graphics_rel = 11,
> @@ -681,6 +693,8 @@ static const struct pci_id_match intel_device_match[] = {
>
> INTEL_NVLS_IDS(INTEL_PCI_ID_INIT, &intel_novalake_s_info),
>
> + INTEL_NVLP_IDS(INTEL_PCI_ID_INIT, &intel_novalake_p_info),
> +
> INTEL_CRI_IDS(INTEL_PCI_ID_INIT, &intel_crescentisland_info),
>
> INTEL_PCI_ID_INIT(PCI_MATCH_ANY, &intel_generic_info),
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for lib: Add NVL-P and WCL support
2026-03-11 5:49 [PATCH i-g-t 0/3] lib: Add NVL-P and WCL support himanshu.girotra
` (2 preceding siblings ...)
2026-03-11 5:49 ` [PATCH i-g-t 3/3] lib: Add WildcatLake support himanshu.girotra
@ 2026-03-11 6:23 ` Patchwork
2026-03-11 6:39 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-11 6:23 UTC (permalink / raw)
To: himanshu.girotra; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1910 bytes --]
== Series Details ==
Series: lib: Add NVL-P and WCL support
URL : https://patchwork.freedesktop.org/series/162992/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8792_BAT -> XEIGTPW_14722_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 13)
------------------------------
Missing (1): bat-dg2-oem2
Known issues
------------
Here are the changes found in XEIGTPW_14722_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* IGT: IGT_8792 -> IGTPW_14722
* Linux: xe-4691-bf3ba6a508ffb59323357535a459eb64f02d94f7 -> xe-4695-e2ad8f051843c953c01f8609c8b392abc2bd5c82
IGTPW_14722: 14722
IGT_8792: 8792
xe-4691-bf3ba6a508ffb59323357535a459eb64f02d94f7: bf3ba6a508ffb59323357535a459eb64f02d94f7
xe-4695-e2ad8f051843c953c01f8609c8b392abc2bd5c82: e2ad8f051843c953c01f8609c8b392abc2bd5c82
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/index.html
[-- Attachment #2: Type: text/html, Size: 2584 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for lib: Add NVL-P and WCL support
2026-03-11 5:49 [PATCH i-g-t 0/3] lib: Add NVL-P and WCL support himanshu.girotra
` (3 preceding siblings ...)
2026-03-11 6:23 ` ✓ Xe.CI.BAT: success for lib: Add NVL-P and WCL support Patchwork
@ 2026-03-11 6:39 ` Patchwork
2026-03-11 16:13 ` ✗ i915.CI.Full: failure " Patchwork
2026-03-11 20:39 ` ✓ Xe.CI.FULL: success " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-11 6:39 UTC (permalink / raw)
To: himanshu.girotra; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6197 bytes --]
== Series Details ==
Series: lib: Add NVL-P and WCL support
URL : https://patchwork.freedesktop.org/series/162992/
State : success
== Summary ==
CI Bug Log - changes from IGT_8792 -> IGTPW_14722
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/index.html
Participating hosts (40 -> 38)
------------------------------
Additional (1): bat-adls-6
Missing (3): bat-dg2-13 fi-glk-j4005 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14722 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#15656])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8792/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8792/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8792/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#7707]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][10] ([i915#4103]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][13] ([i915#5354])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#1072] / [i915#9732]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#3555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][16] ([i915#3291]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [FAIL][17] ([i915#14867]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8792/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [DMESG-WARN][19] ([i915#15673]) -> [PASS][20] +48 other tests pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8792/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8792 -> IGTPW_14722
* Linux: CI_DRM_18121 -> CI_DRM_18125
CI-20190529: 20190529
CI_DRM_18121: bf3ba6a508ffb59323357535a459eb64f02d94f7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18125: e2ad8f051843c953c01f8609c8b392abc2bd5c82 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14722: 14722
IGT_8792: 8792
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/index.html
[-- Attachment #2: Type: text/html, Size: 7392 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for lib: Add NVL-P and WCL support
2026-03-11 5:49 [PATCH i-g-t 0/3] lib: Add NVL-P and WCL support himanshu.girotra
` (4 preceding siblings ...)
2026-03-11 6:39 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-11 16:13 ` Patchwork
2026-03-11 20:39 ` ✓ Xe.CI.FULL: success " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-11 16:13 UTC (permalink / raw)
To: himanshu.girotra; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 138216 bytes --]
== Series Details ==
Series: lib: Add NVL-P and WCL support
URL : https://patchwork.freedesktop.org/series/162992/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18125_full -> IGTPW_14722_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14722_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14722_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14722_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@slpc:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-3/igt@i915_selftest@live@slpc.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-5/igt@i915_selftest@live@slpc.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-glk: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@perf_pmu@multi-client@vcs1:
- shard-mtlp: [PASS][4] -> [FAIL][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-mtlp-5/igt@perf_pmu@multi-client@vcs1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-6/igt@perf_pmu@multi-client@vcs1.html
Known issues
------------
Here are the changes found in IGTPW_14722_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-2/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#15678])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@drm_buddy@drm_buddy.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#14544] / [i915#3281]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#3281]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-15/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#3281]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-3/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][18] -> [INCOMPLETE][19] ([i915#12392] / [i915#13356])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#6335])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#6335])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [FAIL][22] ([i915#15454])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][24] ([i915#13356]) +1 other test incomplete
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk11: NOTRUN -> [INCOMPLETE][25] ([i915#13356]) +1 other test incomplete
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk11/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@hostile:
- shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-snb5/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@in-flight-suspend:
- shard-rkl: [PASS][30] -> [INCOMPLETE][31] ([i915#13390])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@gem_eio@in-flight-suspend.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_eio@in-flight-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][32] ([i915#13390])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk5/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-5/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#4525])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-tglu-1: NOTRUN -> [DMESG-FAIL][36] ([i915#15478])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@gem_exec_big@single.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-19/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][39] +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +11 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#14544] / [i915#2190])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][44] ([i915#2190])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk5/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-8/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#14544] / [i915#4613])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-6/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][56] ([i915#2658])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk9/igt@gem_pread@exhaustion.html
* igt@gem_pread@uncached:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-2/igt@gem_pread@uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][58] ([i915#14702] / [i915#2658])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk5/igt@gem_pwrite@basic-exhaustion.html
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#14544] / [i915#3282]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [FAIL][60] ([i915#15717])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: [PASS][61] -> [ABORT][62] ([i915#15131])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4270])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_readwrite@read-write:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-1/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_userptr_blits@access-control:
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#3297])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3297]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#3297] / [i915#3323])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#3297]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-18/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-8/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282] / [i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4880])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3281] / [i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4958])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4958])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][79] ([i915#13356])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk8/igt@gem_workarounds@suspend-resume-context.html
* igt@gen7_exec_parse@basic-rejected:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#14544]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-5/igt@gen9_exec_parse@allowed-single.html
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#2527]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@gen9_exec_parse@allowed-single.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-16/igt@gen9_exec_parse@allowed-single.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-2/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#14544] / [i915#2527])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#11527]) +7 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#14073]) +6 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-2/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#14118])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-idle.html
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#14118])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-idle.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#14118])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-2/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#8399])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#13356] / [i915#15172])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk2/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#11681])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#4387])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk11: NOTRUN -> [INCOMPLETE][97] ([i915#4817])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk11/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [PASS][98] -> [INCOMPLETE][99] ([i915#4817])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@i915_suspend@debugfs-reader.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][100] ([i915#4817])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk3/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#7707])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@intel_hwmon@hwmon-write.html
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#7707])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#7707])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#5190])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@test-cursor@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#15791]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-8/igt@kms_async_flips@test-cursor@pipe-d-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][106] ([i915#1769])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [PASS][107] -> [FAIL][108] ([i915#5956]) +1 other test fail
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#14544] / [i915#5286])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#5286]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-14/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#5286]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#3638])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@kms_big_fb@linear-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#3638]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-13/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#14544] / [i915#3638])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#3828]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][118] +8 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][121] +14 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][122] +27 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][123] +67 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk10/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#6095]) +81 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +152 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][126] +39 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#14098] / [i915#6095]) +48 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#12313]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#6095]) +30 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#14544] / [i915#6095]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#6095]) +34 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6095]) +24 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#6095]) +73 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#6095]) +14 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#13784])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) +6 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-10/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#14544] / [i915#7828])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-17/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color_pipeline@plane-ctm3x4-lut1d:
- shard-snb: NOTRUN -> [SKIP][145] +71 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-snb1/igt@kms_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_color_pipeline@plane-ctm3x4-lut1d@pipe-d-plane-1:
- shard-mtlp: NOTRUN -> [FAIL][146] ([i915#15733]) +12 other tests fail
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-2/igt@kms_color_pipeline@plane-ctm3x4-lut1d@pipe-d-plane-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#15330] / [i915#3116]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#15330])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#15330])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#7118] / [i915#9424])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-1/igt@kms_content_protection@legacy.html
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_content_protection@legacy.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#7116] / [i915#9424])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-19/igt@kms_content_protection@legacy.html
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-6/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#9424])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-17/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#6944])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#6944] / [i915#7118])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#6944]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#13049])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#13049]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [PASS][162] -> [FAIL][163] ([i915#13566]) +5 other tests fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][164] -> [FAIL][165] ([i915#13566]) +1 other test fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][166] ([i915#13566]) +2 other tests fail
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@kms_cursor_crc@cursor-random-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8814])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3555]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#14544] / [i915#3555]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#8814])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#3555]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#3555]) +6 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#4103]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#9809])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#13046] / [i915#5354]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#4103])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#9723])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-17/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#9723])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#3804])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#1257])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#13748])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#13707])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-5/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-3/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3840] / [i915#9053])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][189] ([i915#9878])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3955])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#1839]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#658])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#3637] / [i915#9934]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#9934])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-16/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#9934]) +8 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#9934])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#9934]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#9934]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#8381])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-16/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-snb: [PASS][200] -> [DMESG-WARN][201] ([i915#13899]) +1 other test dmesg-warn
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-snb7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-snb7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#15643])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#15643])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#15643]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#15643] / [i915#5190])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#15643]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#15643]) +4 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: [PASS][208] -> [SKIP][209] ([i915#15672])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-mtlp-6/igt@kms_force_connector_basic@force-connector-state.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: [PASS][210] -> [FAIL][211] ([i915#15389] / [i915#6880]) +2 other tests fail
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#8708]) +5 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#1825]) +15 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][214] ([i915#10056])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#5439])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#15102]) +5 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#15102]) +3 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#15102] / [i915#3458]) +4 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#1825]) +26 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#5354]) +18 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#15102] / [i915#3023]) +20 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#8708]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#9766])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#9766])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#9766])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#9766])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#15102]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#15102])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#15104])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#15104]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#15104])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#15102] / [i915#3458]) +9 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][234] +15 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#1825]) +3 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][236] +48 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#8708]) +8 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#15102]) +21 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-19/igt@kms_hdr@invalid-metadata-sizes.html
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [ABORT][243] ([i915#15132]) +1 other test abort
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#15459])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-4/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#14544] / [i915#15458])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#13688])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#15458])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#15458])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#15458])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#15458])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-16/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#15638] / [i915#15722])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk10: NOTRUN -> [INCOMPLETE][252] ([i915#12756] / [i915#13409] / [i915#13476])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk10: NOTRUN -> [INCOMPLETE][253] ([i915#13409] / [i915#13476])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#15709]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#15709]) +5 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15709]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#14544] / [i915#15709]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#15709]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-15/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#15608]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#15608]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#15709]) +5 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][262] ([i915#12178])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][263] ([i915#7862]) +1 other test fail
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][264] ([i915#10647] / [i915#12177])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk4/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][265] ([i915#10647]) +1 other test fail
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk4/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8821])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#13958])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-y.html
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#13958])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#14259])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-6/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#14259])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [PASS][271] -> [SKIP][272] ([i915#6953])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#6953])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#15329]) +4 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#15329]) +4 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#15329] / [i915#3555] / [i915#6953])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#15329]) +3 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#12343])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#12343] / [i915#14544])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#12343])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-12/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#12343])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-9/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#9812])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-2/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#14544] / [i915#9685])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#9685])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#15739])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#15739])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#9340])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#3828])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#8430])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#15073])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: [PASS][291] -> [SKIP][292] ([i915#15073]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#15073])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-3/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-dg1: [PASS][294] -> [SKIP][295] ([i915#15073])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-17/igt@kms_pm_rpm@dpms-non-lpsp.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-15/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#4077]) +3 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-14/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [PASS][297] -> [DMESG-WARN][298] ([i915#4423]) +3 other tests dmesg-warn
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-13/igt@kms_pm_rpm@i2c.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-18/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#15073])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#15403])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#6524] / [i915#6805])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@kms_prime@basic-crc-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#6524]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-18/igt@kms_prime@basic-crc-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#6524]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-10/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#6524])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-7/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#6524])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][306] ([i915#11520]) +15 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#11520]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][308] ([i915#11520])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#12316])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#11520] / [i915#14544])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#11520]) +4 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#11520])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-16/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#11520]) +5 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#11520]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-pr-basic:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#9688]) +11 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-2/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +10 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-19/igt@kms_psr@fbc-psr2-basic.html
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#9732]) +18 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-7/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][319] +521 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk1/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#1072] / [i915#9732]) +17 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@kms_psr@psr-sprite-render.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#1072] / [i915#9732]) +14 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#9732]) +7 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#9685])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-14/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-tglu: NOTRUN -> [SKIP][324] ([i915#9685])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#9685])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#9685])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk10: NOTRUN -> [INCOMPLETE][327] ([i915#15492])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][328] ([i915#15500])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][329] ([i915#15492])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#5289])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#5289])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][332] ([i915#5289]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][333] ([i915#12276]) +3 other tests incomplete
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#15243] / [i915#3555]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#15243] / [i915#3555]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@kms_vrr@flip-dpms.html
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#3555]) +2 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-15/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#3555] / [i915#8808]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-8/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#14544] / [i915#3555] / [i915#9906])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#9906])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#9906])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#9906])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#2435])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@module-unload:
- shard-tglu-1: NOTRUN -> [ABORT][343] ([i915#13029] / [i915#15778])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-1/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-mtlp: [PASS][344] -> [FAIL][345] ([i915#15520]) +1 other test fail
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@multi-client:
- shard-mtlp: [PASS][346] -> [FAIL][347] ([i915#4349]) +1 other test fail
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-mtlp-5/igt@perf_pmu@multi-client.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-6/igt@perf_pmu@multi-client.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [PASS][348] -> [INCOMPLETE][349] ([i915#13356] / [i915#14242])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-glk1/igt@perf_pmu@rc6-suspend.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk4/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#3708])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-15/igt@prime_vgem@basic-fence-flip.html
- shard-dg2: NOTRUN -> [SKIP][351] ([i915#3708])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#3291] / [i915#3708])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][353] ([i915#3708])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html
#### Possible fixes ####
* igt@gem_eio@in-flight-suspend:
- shard-dg1: [DMESG-WARN][354] ([i915#4391] / [i915#4423]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-14/igt@gem_eio@in-flight-suspend.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-15/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][356] ([i915#13356]) -> [PASS][357] +1 other test pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-dg2: [FAIL][358] ([i915#15734]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-8/igt@gem_lmem_swapping@smem-oom.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [CRASH][360] ([i915#5493]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [ABORT][362] ([i915#15152]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][364] ([i915#13356] / [i915#13820]) -> [PASS][365] +1 other test pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [FAIL][366] ([i915#12964]) -> [PASS][367] +1 other test pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend:
- shard-tglu: [ABORT][368] -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-tglu-3/igt@i915_pm_rpm@system-suspend.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-10/igt@i915_pm_rpm@system-suspend.html
* igt@i915_selftest@live:
- shard-mtlp: [DMESG-FAIL][370] ([i915#12061] / [i915#15560]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-mtlp-1/igt@i915_selftest@live.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][372] ([i915#12061]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [INCOMPLETE][374] ([i915#4817]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-dg1: [FAIL][376] ([i915#14888]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-19/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][378] ([i915#5956]) -> [PASS][379] +1 other test pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-dg1: [DMESG-WARN][380] ([i915#4423]) -> [PASS][381] +2 other tests pass
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-19/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-12/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_color@deep-color:
- shard-rkl: [SKIP][382] ([i915#12655] / [i915#3555]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-7/igt@kms_color@deep-color.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-rkl: [FAIL][384] ([i915#13566]) -> [PASS][385] +1 other test pass
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@kms_cursor_crc@cursor-random-64x21.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: [FAIL][386] ([i915#13566]) -> [PASS][387] +1 other test pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [TIMEOUT][388] ([i915#14033] / [i915#14350]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][390] ([i915#14033]) -> [PASS][391] +2 other tests pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-snb6/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: [INCOMPLETE][392] ([i915#6113]) -> [PASS][393] +1 other test pass
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-dg2: [FAIL][394] ([i915#15389] / [i915#6880]) -> [PASS][395]
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][396] ([i915#15073]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-rkl: [FAIL][398] ([i915#15106]) -> [PASS][399] +1 other test pass
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][400] ([i915#15106]) -> [PASS][401] +2 other tests pass
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-mtlp-3/igt@kms_setmode@basic@pipe-b-edp-1.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][402] ([i915#4349]) -> [PASS][403] +4 other tests pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][404] ([i915#8411]) -> [SKIP][405] ([i915#14544] / [i915#8411])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: [SKIP][406] ([i915#7697]) -> [SKIP][407] ([i915#14544] / [i915#7697]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][408] ([i915#6335]) -> [SKIP][409] ([i915#14544] / [i915#6335])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: [SKIP][410] ([i915#4525]) -> [SKIP][411] ([i915#14544] / [i915#4525])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: [SKIP][412] ([i915#14544] / [i915#4525]) -> [SKIP][413] ([i915#4525])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: [SKIP][414] ([i915#3281]) -> [SKIP][415] ([i915#14544] / [i915#3281]) +3 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-noreloc.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: [SKIP][416] ([i915#14544] / [i915#3281]) -> [SKIP][417] ([i915#3281]) +4 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_lmem_swapping@random:
- shard-rkl: [SKIP][418] ([i915#14544] / [i915#4613]) -> [SKIP][419] ([i915#4613])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gem_lmem_swapping@random.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@gem_lmem_swapping@random.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: [SKIP][420] ([i915#3282]) -> [SKIP][421] ([i915#14544] / [i915#3282]) +2 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-8/igt@gem_partial_pwrite_pread@reads-uncached.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: [SKIP][422] ([i915#3297]) -> [SKIP][423] ([i915#14544] / [i915#3297]) +2 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@gem_userptr_blits@coherency-unsync.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: [SKIP][424] ([i915#14544] / [i915#3297]) -> [SKIP][425] ([i915#3297])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: [SKIP][426] ([i915#2527]) -> [SKIP][427] ([i915#14544] / [i915#2527])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-rkl: [SKIP][428] ([i915#14544] / [i915#2527]) -> [SKIP][429] ([i915#2527]) +1 other test skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: [SKIP][430] ([i915#14498]) -> [SKIP][431] ([i915#14498] / [i915#14544])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_selftest@live:
- shard-dg2: [DMESG-FAIL][432] ([i915#12061]) -> [INCOMPLETE][433] ([i915#12061])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-3/igt@i915_selftest@live.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-5/igt@i915_selftest@live.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: [SKIP][434] ([i915#5286]) -> [SKIP][435] ([i915#14544] / [i915#5286]) +2 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#5286]) -> [SKIP][437] ([i915#5286]) +2 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][438] ([i915#14544] / [i915#3638]) -> [SKIP][439] ([i915#3638])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][440] ([i915#3638]) -> [SKIP][441] ([i915#14544] / [i915#3638]) +2 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][442] ([i915#14544]) -> [SKIP][443] +6 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][444] ([i915#14098] / [i915#6095]) -> [SKIP][445] ([i915#14098] / [i915#14544] / [i915#6095]) +12 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][446] ([i915#12313]) -> [SKIP][447] ([i915#12313] / [i915#14544])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#6095]) -> [SKIP][449] ([i915#6095]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][450] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][451] ([i915#14098] / [i915#6095]) +2 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg1: [SKIP][452] ([i915#4423] / [i915#6095]) -> [SKIP][453] ([i915#6095]) +1 other test skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-3.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][454] ([i915#6095]) -> [SKIP][455] ([i915#14544] / [i915#6095]) +11 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: [INCOMPLETE][456] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][457] ([i915#15582]) +1 other test incomplete
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: [SKIP][458] ([i915#3742]) -> [SKIP][459] ([i915#14544] / [i915#3742])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-3/igt@kms_cdclk@mode-transition.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: [SKIP][460] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][461] ([i915#11151] / [i915#7828]) +1 other test skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][462] ([i915#11151] / [i915#7828]) -> [SKIP][463] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-rkl: [SKIP][464] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][465] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@kms_content_protection@atomic.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][466] ([i915#6944] / [i915#9424]) -> [SKIP][467] ([i915#9433])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-18/igt@kms_content_protection@mei-interface.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][469] ([i915#6944] / [i915#7118] / [i915#9424])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_content_protection@uevent.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: [SKIP][470] ([i915#13049]) -> [SKIP][471] ([i915#13049] / [i915#14544])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][472] -> [SKIP][473] ([i915#14544]) +12 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: [SKIP][474] ([i915#13749] / [i915#14544]) -> [SKIP][475] ([i915#13749])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][476] ([i915#13748] / [i915#14544]) -> [SKIP][477] ([i915#13748])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: [SKIP][478] ([i915#658]) -> [SKIP][479] ([i915#14544] / [i915#658])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-3/igt@kms_feature_discovery@psr1.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-rkl: [SKIP][480] ([i915#9934]) -> [SKIP][481] ([i915#14544] / [i915#9934]) +6 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@kms_flip@2x-absolute-wf_vblank.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#9934]) -> [SKIP][483] ([i915#9934]) +2 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#15643]) -> [SKIP][485] ([i915#15643])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-rkl: [SKIP][486] ([i915#15643]) -> [SKIP][487] ([i915#14544] / [i915#15643])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite:
- shard-rkl: [SKIP][488] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][489] ([i915#15102] / [i915#3023]) +3 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][490] ([i915#15102] / [i915#3023]) -> [SKIP][491] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: [SKIP][492] -> [SKIP][493] ([i915#4423])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#1825]) -> [SKIP][495] ([i915#1825]) +12 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][496] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][497] ([i915#15102] / [i915#3458])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][498] ([i915#15102]) -> [SKIP][499] ([i915#14544] / [i915#15102])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#15102]) -> [SKIP][501] ([i915#15102]) +1 other test skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][502] ([i915#1825]) -> [SKIP][503] ([i915#14544] / [i915#1825]) +13 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][504] ([i915#15102] / [i915#3458]) -> [SKIP][505] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][506] ([i915#14544] / [i915#15458]) -> [SKIP][507] ([i915#15458])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-rkl: [SKIP][508] ([i915#15709]) -> [SKIP][509] ([i915#14544] / [i915#15709]) +1 other test skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: [SKIP][510] ([i915#13958] / [i915#14544]) -> [SKIP][511] ([i915#13958])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#15329] / [i915#3555]) -> [SKIP][513] ([i915#15329] / [i915#3555])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][514] ([i915#14544] / [i915#15329]) -> [SKIP][515] ([i915#15329]) +6 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [SKIP][516] ([i915#15128]) -> [FAIL][517] ([i915#15752])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][518] ([i915#15073]) -> [SKIP][519] ([i915#14544] / [i915#15073])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][520] ([i915#11520]) -> [SKIP][521] ([i915#11520] / [i915#14544]) +5 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][522] ([i915#11520] / [i915#14544]) -> [SKIP][523] ([i915#11520]) +2 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: [SKIP][524] ([i915#9683]) -> [SKIP][525] ([i915#14544] / [i915#9683])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-rkl: [SKIP][526] ([i915#1072] / [i915#9732]) -> [SKIP][527] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-2/igt@kms_psr@pr-cursor-plane-onoff.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-rkl: [SKIP][528] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][529] ([i915#1072] / [i915#9732]) +4 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: [SKIP][530] ([i915#9685]) -> [SKIP][531] ([i915#14544] / [i915#9685])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][532] ([i915#5289]) -> [SKIP][533] ([i915#14544] / [i915#5289])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: [SKIP][534] ([i915#3555]) -> [SKIP][535] ([i915#14544] / [i915#3555]) +1 other test skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@kms_setmode@clone-exclusive-crtc.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: [SKIP][536] ([i915#8623]) -> [SKIP][537] ([i915#14544] / [i915#8623])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][538] ([i915#15243] / [i915#3555]) -> [SKIP][539] ([i915#14544] / [i915#15243] / [i915#3555])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-5/igt@kms_vrr@flip-basic.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@kms_vrr@flip-basic.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][540] ([i915#13029] / [i915#15778]) -> [ABORT][541] ([i915#15778])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg2-6/igt@perf_pmu@module-unload.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg2-8/igt@perf_pmu@module-unload.html
- shard-dg1: [ABORT][542] ([i915#13029] / [i915#15778]) -> [ABORT][543] ([i915#15778])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-dg1-17/igt@perf_pmu@module-unload.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-dg1-13/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][544] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][545] ([i915#3291] / [i915#3708])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@prime_vgem@basic-read.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][546] ([i915#14544] / [i915#3708]) -> [SKIP][547] ([i915#3708])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: [SKIP][548] ([i915#3708]) -> [SKIP][549] ([i915#14544] / [i915#3708])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-1/igt@prime_vgem@fence-read-hang.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: [SKIP][550] ([i915#9917]) -> [SKIP][551] ([i915#14544] / [i915#9917])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18125/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13899]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15717
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15791]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15791
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8792 -> IGTPW_14722
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18125: e2ad8f051843c953c01f8609c8b392abc2bd5c82 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14722: 14722
IGT_8792: 8792
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14722/index.html
[-- Attachment #2: Type: text/html, Size: 186388 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.FULL: success for lib: Add NVL-P and WCL support
2026-03-11 5:49 [PATCH i-g-t 0/3] lib: Add NVL-P and WCL support himanshu.girotra
` (5 preceding siblings ...)
2026-03-11 16:13 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-03-11 20:39 ` Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-11 20:39 UTC (permalink / raw)
To: himanshu.girotra; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 37951 bytes --]
== Series Details ==
Series: lib: Add NVL-P and WCL support
URL : https://patchwork.freedesktop.org/series/162992/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8792_FULL -> XEIGTPW_14722_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14722_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2370])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2327]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-10/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1407]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#367] / [Intel XE#7354]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-8/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#367] / [Intel XE#7354])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-10/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2652]) +12 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-a-hdmi-a-3.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#373])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#3304] / [Intel XE#7374])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-2/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-6/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3278] / [Intel XE#6973])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-7/igt@kms_content_protection@type1.html
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2341])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-10/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2320]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1424])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-3/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2291])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2316]) +6 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-10/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1397] / [Intel XE#7385])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#7178] / [Intel XE#7351])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7179])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-9/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7179])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-5/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2312]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2311]) +8 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#656]) +8 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4141]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#6312])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2313]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#7308])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#1503])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-4/igt@kms_hdr@static-toggle-dpms.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#7086])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2:
- shard-bmg: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#2597]) +1 other test incomplete
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-2.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7283])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7283])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][50] -> [FAIL][51] ([Intel XE#7340] / [Intel XE#7504])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2392] / [Intel XE#6927])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2893] / [Intel XE#7304]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1489]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1406]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-6/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-7/igt@kms_psr@psr-basic.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#1435])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sharpness_filter@filter-modifiers:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6503])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-1/igt@kms_sharpness_filter@filter-modifiers.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1499])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_vrr@flip-suspend.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1447] / [Intel XE#7469])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-2/igt@xe_compute@ccs-mode-compute-kernel.html
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6599])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-3/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_evict@evict-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7140])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-9/igt@xe_evict@evict-small-multi-queue.html
* igt@xe_exec_balancer@once-cm-parallel-rebind:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#7482]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-5/igt@xe_exec_balancer@once-cm-parallel-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1392]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#7136]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#7136]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_multi_queue@max-queues-priority-smem:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#6874]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-2/igt@xe_exec_multi_queue@max-queues-priority-smem.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#6874]) +9 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-2/igt@xe_exec_multi_queue@one-queue-preempt-mode-basic-smem.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-twice:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#4837])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-5/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4837])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-9/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#5625])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#7138]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#7138]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr.html
* igt@xe_peer2peer@read:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1061] / [Intel XE#7326] / [Intel XE#7353])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-2/igt@xe_peer2peer@read.html
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#2284] / [Intel XE#7370])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-5/igt@xe_pm@d3cold-mocs.html
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2284] / [Intel XE#7370])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-4/igt@xe_pm@d3cold-mocs.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4733] / [Intel XE#7417])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-topology:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#944])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-3/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [PASS][84] -> [FAIL][85] ([Intel XE#5937])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-4/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#4273])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-7/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [FAIL][87] ([Intel XE#5993] / [Intel XE#6054]) -> [PASS][88] +3 other tests pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][89] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][91] ([Intel XE#2291]) -> [PASS][92] +1 other test pass
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [SKIP][93] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [SKIP][95] ([Intel XE#4354]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-3/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [SKIP][97] ([Intel XE#2316]) -> [PASS][98] +3 other tests pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][99] ([Intel XE#301]) -> [PASS][100] +3 other tests pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][101] ([Intel XE#1503]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [SKIP][103] ([Intel XE#4596]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][105] ([Intel XE#1499]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_vrr@negative-basic.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-8/igt@kms_vrr@negative-basic.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-bmg: [ABORT][107] ([Intel XE#7578]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-bmg: [SKIP][109] ([Intel XE#7194]) -> [FAIL][110] ([Intel XE#3304] / [Intel XE#7374])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-2/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: [FAIL][111] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][112] ([Intel XE#7194]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-7/igt@kms_content_protection@atomic-hdcp14.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][113] ([Intel XE#2341]) -> [FAIL][114] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][115] ([Intel XE#2312]) -> [SKIP][116] ([Intel XE#2311]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][117] ([Intel XE#2311]) -> [SKIP][118] ([Intel XE#2312]) +10 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][119] ([Intel XE#2312]) -> [SKIP][120] ([Intel XE#4141]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][121] ([Intel XE#4141]) -> [SKIP][122] ([Intel XE#2312]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
- shard-bmg: [SKIP][123] ([Intel XE#2312]) -> [SKIP][124] ([Intel XE#2313]) +10 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][125] ([Intel XE#2313]) -> [SKIP][126] ([Intel XE#2312]) +10 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][127] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][128] ([Intel XE#4596])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8792/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-yf.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7469
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8792 -> IGTPW_14722
* Linux: xe-4691-bf3ba6a508ffb59323357535a459eb64f02d94f7 -> xe-4695-e2ad8f051843c953c01f8609c8b392abc2bd5c82
IGTPW_14722: 14722
IGT_8792: 8792
xe-4691-bf3ba6a508ffb59323357535a459eb64f02d94f7: bf3ba6a508ffb59323357535a459eb64f02d94f7
xe-4695-e2ad8f051843c953c01f8609c8b392abc2bd5c82: e2ad8f051843c953c01f8609c8b392abc2bd5c82
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14722/index.html
[-- Attachment #2: Type: text/html, Size: 43900 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-03-11 20:39 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-11 5:49 [PATCH i-g-t 0/3] lib: Add NVL-P and WCL support himanshu.girotra
2026-03-11 5:49 ` [PATCH i-g-t 1/3] lib/pciids: sync with kernel commit be07d8f707e4 himanshu.girotra
2026-03-11 5:49 ` [PATCH i-g-t 2/3] lib: Add NVL-P support himanshu.girotra
2026-03-11 6:17 ` Shekhar Chauhan
2026-03-11 5:49 ` [PATCH i-g-t 3/3] lib: Add WildcatLake support himanshu.girotra
2026-03-11 6:23 ` ✓ Xe.CI.BAT: success for lib: Add NVL-P and WCL support Patchwork
2026-03-11 6:39 ` ✓ i915.CI.BAT: " Patchwork
2026-03-11 16:13 ` ✗ i915.CI.Full: failure " Patchwork
2026-03-11 20:39 ` ✓ Xe.CI.FULL: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox