* [PATCH v3 i-g-t 0/4] lib: Add NVL-P and WCL support
@ 2026-03-12 16:03 himanshu.girotra
2026-03-12 16:03 ` [PATCH v3 i-g-t 1/4] lib/pciids: sync with kernel commit be07d8f707e4 himanshu.girotra
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: himanshu.girotra @ 2026-03-12 16:03 UTC (permalink / raw)
To: ramadevi.gandi, nishit.sharma, aditya.chauhan, kamil.konieczny,
shekhar.chauhan, zbigniew.kempczynski, 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").
Patch 4 fixes compute tests that would skip on WCL. The compute
kernel lookup uses exact ip_ver matching, so a dedicated
IP_VER(30, 03) entry is required now that WCL has its own
graphics_rel distinct from PTL's 30.00.
Changes in v2:
- Add patch 3: WildcatLake support (Kamil Konieczny)
Changes in v3:
- Fix graphics_rel typo in WildcatLake (0 → 3)
Changes in v4:
-- Add patch 4: Fix tests on WCL due to missing ip_ver entry
This series supersedes the incorrectly threaded earlier submission:
https://patchwork.freedesktop.org/series/162971/
Himanshu Girotra (4):
lib/pciids: sync with kernel commit be07d8f707e4
lib: Add NVL-P support
lib: Add WildcatLake support
lib: Add WildcatLake to compute kernel tables
lib/intel_chipset.h | 4 ++++
lib/intel_compute.c | 11 +++++++++++
lib/intel_compute_square_kernels.c | 11 +++++++++++
lib/intel_device_info.c | 27 +++++++++++++++++++++++++++
lib/pciids.h | 19 +++++++++++++++++--
5 files changed, 70 insertions(+), 2 deletions(-)
--
2.50.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH v3 i-g-t 1/4] lib/pciids: sync with kernel commit be07d8f707e4 2026-03-12 16:03 [PATCH v3 i-g-t 0/4] lib: Add NVL-P and WCL support himanshu.girotra @ 2026-03-12 16:03 ` himanshu.girotra 2026-03-12 16:03 ` [PATCH v3 i-g-t 2/4] lib: Add NVL-P support himanshu.girotra ` (6 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: himanshu.girotra @ 2026-03-12 16:03 UTC (permalink / raw) To: ramadevi.gandi, nishit.sharma, aditya.chauhan, kamil.konieczny, shekhar.chauhan, zbigniew.kempczynski, 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] 10+ messages in thread
* [PATCH v3 i-g-t 2/4] lib: Add NVL-P support 2026-03-12 16:03 [PATCH v3 i-g-t 0/4] lib: Add NVL-P and WCL support himanshu.girotra 2026-03-12 16:03 ` [PATCH v3 i-g-t 1/4] lib/pciids: sync with kernel commit be07d8f707e4 himanshu.girotra @ 2026-03-12 16:03 ` himanshu.girotra 2026-03-12 16:03 ` [PATCH v3 i-g-t 3/4] lib: Add WildcatLake support himanshu.girotra ` (5 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: himanshu.girotra @ 2026-03-12 16:03 UTC (permalink / raw) To: ramadevi.gandi, nishit.sharma, aditya.chauhan, kamil.konieczny, shekhar.chauhan, zbigniew.kempczynski, igt-dev From: Himanshu Girotra <himanshu.girotra@intel.com> Add NVL-P device info. Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com> 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), -- 2.50.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v3 i-g-t 3/4] lib: Add WildcatLake support 2026-03-12 16:03 [PATCH v3 i-g-t 0/4] lib: Add NVL-P and WCL support himanshu.girotra 2026-03-12 16:03 ` [PATCH v3 i-g-t 1/4] lib/pciids: sync with kernel commit be07d8f707e4 himanshu.girotra 2026-03-12 16:03 ` [PATCH v3 i-g-t 2/4] lib: Add NVL-P support himanshu.girotra @ 2026-03-12 16:03 ` himanshu.girotra 2026-03-12 16:03 ` [PATCH v3 i-g-t 4/4] lib: Add WildcatLake to compute kernel tables himanshu.girotra ` (4 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: himanshu.girotra @ 2026-03-12 16:03 UTC (permalink / raw) To: ramadevi.gandi, nishit.sharma, aditya.chauhan, kamil.konieczny, shekhar.chauhan, zbigniew.kempczynski, 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> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.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..da0b9f398 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 = 3, + .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] 10+ messages in thread
* [PATCH v3 i-g-t 4/4] lib: Add WildcatLake to compute kernel tables 2026-03-12 16:03 [PATCH v3 i-g-t 0/4] lib: Add NVL-P and WCL support himanshu.girotra ` (2 preceding siblings ...) 2026-03-12 16:03 ` [PATCH v3 i-g-t 3/4] lib: Add WildcatLake support himanshu.girotra @ 2026-03-12 16:03 ` himanshu.girotra 2026-03-13 5:21 ` Dandamudi, Priyanka 2026-03-12 21:46 ` ✓ Xe.CI.BAT: success for lib: Add NVL-P and WCL support (rev3) Patchwork ` (3 subsequent siblings) 7 siblings, 1 reply; 10+ messages in thread From: himanshu.girotra @ 2026-03-12 16:03 UTC (permalink / raw) To: ramadevi.gandi, nishit.sharma, aditya.chauhan, kamil.konieczny, shekhar.chauhan, zbigniew.kempczynski, igt-dev From: Himanshu Girotra <himanshu.girotra@intel.com> WildcatLake uses graphics IP 30.03 (Xe3_LPG), distinct from PTL's 30.00. The compute kernel lookup uses exact ip_ver matching, so without a dedicated entry for IP_VER(30, 03), compute tests would skip on WCL with "GPU not supported". Add IP_VER(30, 03) entries to: - intel_compute_square_kernels[] - intel_compute_batches[] - intel_compute_preempt_batches[] Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com> --- lib/intel_compute.c | 11 +++++++++++ lib/intel_compute_square_kernels.c | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/lib/intel_compute.c b/lib/intel_compute.c index 0d1e0290f..b3336a7b5 100644 --- a/lib/intel_compute.c +++ b/lib/intel_compute.c @@ -2299,6 +2299,11 @@ static const struct { .compute_exec = xe2lpg_compute_exec, .compat = COMPAT_DRIVER_XE, }, + { + .ip_ver = IP_VER(30, 03), + .compute_exec = xe2lpg_compute_exec, + .compat = COMPAT_DRIVER_XE, + }, { .ip_ver = IP_VER(30, 04), .compute_exec = xe2lpg_compute_exec, @@ -2803,6 +2808,12 @@ static const struct { .compat = COMPAT_DRIVER_XE, .preempt_type = PREEMPT_TGP | PREEMPT_WMTP, }, + { + .ip_ver = IP_VER(30, 03), + .compute_exec = xe2lpg_compute_preempt_exec, + .compat = COMPAT_DRIVER_XE, + .preempt_type = PREEMPT_TGP | PREEMPT_WMTP, + }, { .ip_ver = IP_VER(30, 04), .compute_exec = xe2lpg_compute_preempt_exec, diff --git a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c index 7607fadc3..a612092fc 100644 --- a/lib/intel_compute_square_kernels.c +++ b/lib/intel_compute_square_kernels.c @@ -75,6 +75,17 @@ const struct intel_compute_kernels intel_compute_square_kernels[] = { .loop_kernel = xe3lpg_kernel_loop_bin, .loop_kernel_size = sizeof(xe3lpg_kernel_loop_bin), }, + { + .ip_ver = IP_VER(30, 03), + .size = sizeof(xe3lpg_kernel_square_bin), + .kernel = xe3lpg_kernel_square_bin, + .long_kernel = xe3lpg_kernel_count_bin, + .long_kernel_size = sizeof(xe3lpg_kernel_count_bin), + .sip_kernel = xe3lpg_kernel_sip_bin, + .sip_kernel_size = sizeof(xe3lpg_kernel_sip_bin), + .loop_kernel = xe3lpg_kernel_loop_bin, + .loop_kernel_size = sizeof(xe3lpg_kernel_loop_bin), + }, { .ip_ver = IP_VER(30, 04), .size = sizeof(xe3lpg_kernel_square_bin), -- 2.50.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* RE: [PATCH v3 i-g-t 4/4] lib: Add WildcatLake to compute kernel tables 2026-03-12 16:03 ` [PATCH v3 i-g-t 4/4] lib: Add WildcatLake to compute kernel tables himanshu.girotra @ 2026-03-13 5:21 ` Dandamudi, Priyanka 0 siblings, 0 replies; 10+ messages in thread From: Dandamudi, Priyanka @ 2026-03-13 5:21 UTC (permalink / raw) To: Girotra, Himanshu, Gandi, Ramadevi, Sharma, Nishit, Chauhan, Aditya, Konieczny, Kamil, Chauhan, Shekhar, Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > himanshu.girotra@intel.com > Sent: 12 March 2026 09:33 PM > To: Gandi, Ramadevi <ramadevi.gandi@intel.com>; Sharma, Nishit > <nishit.sharma@intel.com>; Chauhan, Aditya <aditya.chauhan@intel.com>; > Konieczny, Kamil <kamil.konieczny@intel.com>; Chauhan, Shekhar > <shekhar.chauhan@intel.com>; Kempczynski, Zbigniew > <zbigniew.kempczynski@intel.com>; igt-dev@lists.freedesktop.org > Subject: [PATCH v3 i-g-t 4/4] lib: Add WildcatLake to compute kernel tables > > From: Himanshu Girotra <himanshu.girotra@intel.com> > > WildcatLake uses graphics IP 30.03 (Xe3_LPG), distinct from PTL's 30.00. The > compute kernel lookup uses exact ip_ver matching, so without a dedicated > entry for IP_VER(30, 03), compute tests would skip on WCL with "GPU not > supported". > > Add IP_VER(30, 03) entries to: > - intel_compute_square_kernels[] > - intel_compute_batches[] > - intel_compute_preempt_batches[] > > Signed-off-by: Himanshu Girotra <himanshu.girotra@intel.com> > --- > lib/intel_compute.c | 11 +++++++++++ > lib/intel_compute_square_kernels.c | 11 +++++++++++ > 2 files changed, 22 insertions(+) > > diff --git a/lib/intel_compute.c b/lib/intel_compute.c index > 0d1e0290f..b3336a7b5 100644 > --- a/lib/intel_compute.c > +++ b/lib/intel_compute.c > @@ -2299,6 +2299,11 @@ static const struct { > .compute_exec = xe2lpg_compute_exec, > .compat = COMPAT_DRIVER_XE, > }, > + { > + .ip_ver = IP_VER(30, 03), > + .compute_exec = xe2lpg_compute_exec, > + .compat = COMPAT_DRIVER_XE, > + }, > { > .ip_ver = IP_VER(30, 04), > .compute_exec = xe2lpg_compute_exec, > @@ -2803,6 +2808,12 @@ static const struct { > .compat = COMPAT_DRIVER_XE, > .preempt_type = PREEMPT_TGP | PREEMPT_WMTP, > }, > + { > + .ip_ver = IP_VER(30, 03), > + .compute_exec = xe2lpg_compute_preempt_exec, > + .compat = COMPAT_DRIVER_XE, > + .preempt_type = PREEMPT_TGP | PREEMPT_WMTP, > + }, > { > .ip_ver = IP_VER(30, 04), > .compute_exec = xe2lpg_compute_preempt_exec, diff --git > a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c > index 7607fadc3..a612092fc 100644 > --- a/lib/intel_compute_square_kernels.c > +++ b/lib/intel_compute_square_kernels.c > @@ -75,6 +75,17 @@ const struct intel_compute_kernels > intel_compute_square_kernels[] = { > .loop_kernel = xe3lpg_kernel_loop_bin, > .loop_kernel_size = sizeof(xe3lpg_kernel_loop_bin), > }, > + { > + .ip_ver = IP_VER(30, 03), > + .size = sizeof(xe3lpg_kernel_square_bin), > + .kernel = xe3lpg_kernel_square_bin, > + .long_kernel = xe3lpg_kernel_count_bin, > + .long_kernel_size = sizeof(xe3lpg_kernel_count_bin), > + .sip_kernel = xe3lpg_kernel_sip_bin, > + .sip_kernel_size = sizeof(xe3lpg_kernel_sip_bin), > + .loop_kernel = xe3lpg_kernel_loop_bin, > + .loop_kernel_size = sizeof(xe3lpg_kernel_loop_bin), > + }, LGTM, Reviewed-by: Priyanka Dandamudi <priyanka.dandamudi@intel.com> > { > .ip_ver = IP_VER(30, 04), > .size = sizeof(xe3lpg_kernel_square_bin), > -- > 2.50.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for lib: Add NVL-P and WCL support (rev3) 2026-03-12 16:03 [PATCH v3 i-g-t 0/4] lib: Add NVL-P and WCL support himanshu.girotra ` (3 preceding siblings ...) 2026-03-12 16:03 ` [PATCH v3 i-g-t 4/4] lib: Add WildcatLake to compute kernel tables himanshu.girotra @ 2026-03-12 21:46 ` Patchwork 2026-03-12 22:00 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-12 21:46 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1466 bytes --] == Series Details == Series: lib: Add NVL-P and WCL support (rev3) URL : https://patchwork.freedesktop.org/series/162992/ State : success == Summary == CI Bug Log - changes from XEIGT_8799_BAT -> XEIGTPW_14751_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14751_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_waitfence@engine: - bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6519]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8799/bat-dg2-oem2/igt@xe_waitfence@engine.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/bat-dg2-oem2/igt@xe_waitfence@engine.html [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519 Build changes ------------- * IGT: IGT_8799 -> IGTPW_14751 * Linux: xe-4707-3ccc0e3404591e404d0dee79406cd013f377356a -> xe-4708-111c6ccfcc3a51798d3a9b2673240699eff2e3b6 IGTPW_14751: 14751 IGT_8799: 8799 xe-4707-3ccc0e3404591e404d0dee79406cd013f377356a: 3ccc0e3404591e404d0dee79406cd013f377356a xe-4708-111c6ccfcc3a51798d3a9b2673240699eff2e3b6: 111c6ccfcc3a51798d3a9b2673240699eff2e3b6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/index.html [-- Attachment #2: Type: text/html, Size: 2042 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for lib: Add NVL-P and WCL support (rev3) 2026-03-12 16:03 [PATCH v3 i-g-t 0/4] lib: Add NVL-P and WCL support himanshu.girotra ` (4 preceding siblings ...) 2026-03-12 21:46 ` ✓ Xe.CI.BAT: success for lib: Add NVL-P and WCL support (rev3) Patchwork @ 2026-03-12 22:00 ` Patchwork 2026-03-14 0:29 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-14 0:33 ` ✗ i915.CI.Full: failure " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-12 22:00 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9460 bytes --] == Series Details == Series: lib: Add NVL-P and WCL support (rev3) URL : https://patchwork.freedesktop.org/series/162992/ State : success == Summary == CI Bug Log - changes from IGT_8799 -> IGTPW_14751 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/index.html Participating hosts (40 -> 39) ------------------------------ Additional (1): bat-arls-5 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14751 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic: - bat-arls-5: NOTRUN -> [SKIP][1] ([i915#10213] / [i915#11671]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@gem_lmem_swapping@basic.html * igt@gem_mmap@basic: - bat-arls-5: NOTRUN -> [SKIP][2] ([i915#4083]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arls-5: NOTRUN -> [SKIP][3] ([i915#10197] / [i915#10211] / [i915#4079]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arls-5: NOTRUN -> [SKIP][4] ([i915#12637] / [i915#4077]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic@basic: - bat-arls-5: NOTRUN -> [SKIP][5] ([i915#15657]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@gem_tiled_pread_basic@basic.html * igt@i915_module_load@load: - fi-bsw-n3050: [PASS][6] -> [DMESG-WARN][7] ([i915#15498]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8799/fi-bsw-n3050/igt@i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/fi-bsw-n3050/igt@i915_module_load@load.html * igt@i915_pm_rps@basic-api: - bat-arls-5: NOTRUN -> [SKIP][8] ([i915#10209] / [i915#11681]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@i915_pm_rps@basic-api.html * igt@intel_hwmon@hwmon-read: - bat-arls-5: NOTRUN -> [SKIP][9] ([i915#7707]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-arls-5: NOTRUN -> [SKIP][10] ([i915#10200] / [i915#12203]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - bat-arls-5: NOTRUN -> [SKIP][11] ([i915#10200]) +8 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-arls-5: NOTRUN -> [SKIP][12] ([i915#10202]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-arls-5: NOTRUN -> [SKIP][13] ([i915#9886]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-arls-5: NOTRUN -> [SKIP][14] ([i915#10207]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_hdmi_inject@inject-audio: - fi-tgl-1115g4: [PASS][15] -> [FAIL][16] ([i915#14867]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8799/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pm_backlight@basic-brightness: - bat-arls-5: NOTRUN -> [SKIP][17] ([i915#9812]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-arls-5: NOTRUN -> [SKIP][18] ([i915#9732]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-arls-5: NOTRUN -> [SKIP][19] ([i915#10208] / [i915#8809]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-arls-5: NOTRUN -> [SKIP][20] ([i915#10212] / [i915#3708]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-arls-5: NOTRUN -> [SKIP][21] ([i915#12637] / [i915#3708] / [i915#4077]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - bat-arls-5: NOTRUN -> [SKIP][22] ([i915#10214] / [i915#3708]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arls-5: NOTRUN -> [SKIP][23] ([i915#10216] / [i915#3708]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-arls-5/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@requests: - bat-atsm-1: [INCOMPLETE][24] ([i915#14564]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8799/bat-atsm-1/igt@i915_selftest@live@requests.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-atsm-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [DMESG-FAIL][26] ([i915#12061]) -> [PASS][27] +1 other test pass [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8799/bat-dg2-14/igt@i915_selftest@live@workarounds.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-dg2-14/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [INCOMPLETE][28] ([i915#12061] / [i915#14564]) -> [DMESG-FAIL][29] ([i915#12061]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8799/bat-atsm-1/igt@i915_selftest@live.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/bat-atsm-1/igt@i915_selftest@live.html [i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202 [i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203 [i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637 [i915#14564]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14564 [i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867 [i915#15498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15498 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8799 -> IGTPW_14751 * Linux: CI_DRM_18137 -> CI_DRM_18139 CI-20190529: 20190529 CI_DRM_18137: 3ccc0e3404591e404d0dee79406cd013f377356a @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18139: 3fb8dfc6a69ee530c365c36f13bb79ef7f35af1d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14751: 14751 IGT_8799: 8799 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/index.html [-- Attachment #2: Type: text/html, Size: 11314 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for lib: Add NVL-P and WCL support (rev3) 2026-03-12 16:03 [PATCH v3 i-g-t 0/4] lib: Add NVL-P and WCL support himanshu.girotra ` (5 preceding siblings ...) 2026-03-12 22:00 ` ✓ i915.CI.BAT: " Patchwork @ 2026-03-14 0:29 ` Patchwork 2026-03-14 0:33 ` ✗ i915.CI.Full: failure " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-14 0:29 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6842 bytes --] == Series Details == Series: lib: Add NVL-P and WCL support (rev3) URL : https://patchwork.freedesktop.org/series/162992/ State : success == Summary == CI Bug Log - changes from XEIGT_8799_FULL -> XEIGTPW_14751_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14751_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][1] ([Intel XE#1407]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#373]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#4354] / [Intel XE#5882]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-7/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][4] -> [FAIL][5] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8799/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-lnl: [PASS][6] -> [FAIL][7] ([Intel XE#301]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8799/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#656]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#7340]) +1 other test fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8799/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_vrr@flip-suspend: - shard-lnl: [PASS][11] -> [FAIL][12] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8799/shard-lnl-2/igt@kms_vrr@flip-suspend.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-6/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#2142]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8799/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#4837] / [Intel XE#6665]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-8/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma: - shard-lnl: [PASS][16] -> [FAIL][17] ([Intel XE#5625]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8799/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-2/igt@xe_pm@d3cold-mmap-system.html * igt@xe_prefetch_fault@prefetch-fault: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#7599]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-5/igt@xe_prefetch_fault@prefetch-fault.html #### Possible fixes #### * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][20] ([Intel XE#7340]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8799/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 Build changes ------------- * IGT: IGT_8799 -> IGTPW_14751 * Linux: xe-4707-3ccc0e3404591e404d0dee79406cd013f377356a -> xe-4708-111c6ccfcc3a51798d3a9b2673240699eff2e3b6 IGTPW_14751: 14751 IGT_8799: 8799 xe-4707-3ccc0e3404591e404d0dee79406cd013f377356a: 3ccc0e3404591e404d0dee79406cd013f377356a xe-4708-111c6ccfcc3a51798d3a9b2673240699eff2e3b6: 111c6ccfcc3a51798d3a9b2673240699eff2e3b6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14751/index.html [-- Attachment #2: Type: text/html, Size: 7831 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for lib: Add NVL-P and WCL support (rev3) 2026-03-12 16:03 [PATCH v3 i-g-t 0/4] lib: Add NVL-P and WCL support himanshu.girotra ` (6 preceding siblings ...) 2026-03-14 0:29 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-03-14 0:33 ` Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-14 0:33 UTC (permalink / raw) To: himanshu.girotra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 143507 bytes --] == Series Details == Series: lib: Add NVL-P and WCL support (rev3) URL : https://patchwork.freedesktop.org/series/162992/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18139_full -> IGTPW_14751_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14751_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14751_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_14751/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_14751_full: ### IGT changes ### #### Possible regressions #### * igt@i915_drm_fdinfo@memory-info-active: - shard-rkl: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@i915_drm_fdinfo@memory-info-active.html * igt@i915_hangman@gt-error-state-capture: - shard-snb: [PASS][2] -> [INCOMPLETE][3] +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-snb6/igt@i915_hangman@gt-error-state-capture.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-snb4/igt@i915_hangman@gt-error-state-capture.html Known issues ------------ Here are the changes found in IGTPW_14751_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#3555] / [i915#9323]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#13008] / [i915#14544]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#13008]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][10] -> [INCOMPLETE][11] ([i915#13356]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-3/igt@gem_ccs@suspend-resume.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-3/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#12392] / [i915#13356]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#8562]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][19] ([i915#1099]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-snb4/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@gem_ctx_sseu@invalid-args.html - shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-7/igt@gem_ctx_sseu@invalid-args.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-4/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@in-flight-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][25] ([i915#13390]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk11/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-4/igt@gem_exec_balancer@bonded-false-hang.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-14/igt@gem_exec_balancer@bonded-false-hang.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-18/igt@gem_exec_balancer@bonded-sync.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-5/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#14544] / [i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#4525]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][35] ([i915#4525]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-mtlp: [PASS][36] -> [DMESG-FAIL][37] ([i915#15478]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-mtlp-5/igt@gem_exec_big@single.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-4/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#6334]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@gem_exec_capture@capture-invisible@lmem0.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#6334]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-13/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][40] ([i915#6334]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][41] ([i915#6334]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu: NOTRUN -> [SKIP][42] ([i915#6334]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-3/igt@gem_exec_capture@capture-invisible@smem0.html - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#6334]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@gem_exec_flush@basic-uc-rw-default.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#5107]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][47] ([i915#5107]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-concurrent16: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#14544] / [i915#3281]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@gem_exec_reloc@basic-wc-cpu.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@gem_exec_reloc@basic-wc-cpu.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3281]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_suspend@basic-s3-devices: - shard-rkl: [PASS][53] -> [ABORT][54] ([i915#15131]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-3/igt@gem_exec_suspend@basic-s3-devices.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices.html * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-rkl: [PASS][55] -> [ABORT][56] ([i915#15542]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-3/igt@gem_exec_suspend@basic-s3-devices@smem.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4860]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#2190]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][59] ([i915#2190]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk6/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#12193]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4565]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-dg2: [PASS][66] -> [FAIL][67] ([i915#15734]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-8/igt@gem_lmem_swapping@smem-oom.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][68] -> [CRASH][69] ([i915#5493]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#4613]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@gem_lmem_swapping@verify.html * igt@gem_mmap@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-1/igt@gem_mmap@pf-nonblock.html - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-1/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4077]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-18/igt@gem_mmap_gtt@close-race.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-8/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-19/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-8/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-14/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3282]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-4/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][80] ([i915#14702] / [i915#2658]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk6/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][81] ([i915#2658]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#13717]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#13717] / [i915#14544]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@yf-tiled-to-vebox-linear: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190] / [i915#8428]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-linear.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@gem_render_copy@yf-tiled-to-vebox-linear.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#8411]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4079]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4079]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4079]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html * igt@gem_tiled_wb: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4077]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@gem_tiled_wb.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3297]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#14544] / [i915#3297]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][95] ([i915#3323]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#3282] / [i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4880]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4880]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-1/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][101] ([i915#3297]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][102] -> [INCOMPLETE][103] ([i915#13356]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-7/igt@gem_workarounds@suspend-resume-context.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#14544] / [i915#2527]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#2527]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-5/igt@gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#2856]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-6/igt@gen9_exec_parse@bb-start-cmd.html - shard-dg2: NOTRUN -> [SKIP][108] ([i915#2856]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-1/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#2527]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@busy-check-all: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#11527]) +5 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-19/igt@i915_drm_fdinfo@busy-check-all.html * igt@i915_drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#11527]) +6 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-2/igt@i915_drm_fdinfo@busy-check-all@ccs0.html * igt@i915_drm_fdinfo@busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#11527]) +7 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-5/igt@i915_drm_fdinfo@busy-check-all@vecs0.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][113] ([i915#15342]) +1 other test abort [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk3/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@reload-no-display: - shard-dg1: [PASS][114] -> [DMESG-WARN][115] ([i915#13029] / [i915#14545]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-16/igt@i915_module_load@reload-no-display.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#6412]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#8399]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#8399]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#6590]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][120] ([i915#13356]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk3/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][121] -> [INCOMPLETE][122] ([i915#13729] / [i915#13821]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-snb4/igt@i915_pm_rps@reset.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-snb7/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#11681]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4387]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][125] ([i915#4387]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4387]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][127] ([i915#4387]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-7/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#8437]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5723]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][130] ([i915#5723]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@debugfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][131] ([i915#4817]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk1/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@sysfs-reader: - shard-rkl: [PASS][132] -> [INCOMPLETE][133] ([i915#4817]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-7/igt@i915_suspend@sysfs-reader.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#7707]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][135] ([i915#1769]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#1769] / [i915#3555]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: [PASS][137] -> [FAIL][138] ([i915#5956]) +1 other test fail [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#5286]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#5286]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#5286]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][142] -> [FAIL][143] ([i915#15733] / [i915#5138]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5286]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-rkl: NOTRUN -> [SKIP][145] ([i915#14544] / [i915#5286]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3828]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3638]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: [PASS][148] -> [DMESG-WARN][149] ([i915#4423]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-17/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-14/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3638]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#5190]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6187]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#4538] / [i915#5190]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html - shard-dg1: NOTRUN -> [SKIP][154] ([i915#4538]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][155] +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#6095]) +77 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#6095]) +44 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#14544] / [i915#6095]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#4423] / [i915#6095]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#6095]) +33 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#6095]) +201 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#6095]) +71 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [PASS][165] -> [INCOMPLETE][166] ([i915#15582]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#12313]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][168] ([i915#12313]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#14098] / [i915#6095]) +49 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][170] +102 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#6095]) +29 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#6095]) +29 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-6/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#12313]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3742]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3742]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#13783]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +10 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +8 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-9/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-1/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#15330]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#15330]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#15330]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#15330]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-dg2: NOTRUN -> [SKIP][188] ([i915#15330]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#6944] / [i915#7118] / [i915#9424]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_content_protection@legacy.html * igt@kms_content_protection@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#6944]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@uevent-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#6944]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: NOTRUN -> [FAIL][192] ([i915#13566]) +1 other test fail [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [PASS][193] -> [FAIL][194] ([i915#13566]) +1 other test fail [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#8814]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3555]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#13049]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +4 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][199] +18 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#9809]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#14544] / [i915#4103]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#4103]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#13046] / [i915#5354]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#9067]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#9067]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#4103]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#9723]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][208] ([i915#9723]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#13691]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#1769] / [i915#3555] / [i915#3804]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3804]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#13749]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-8/igt@kms_dp_link_training@non-uhbr-mst.html - shard-rkl: NOTRUN -> [SKIP][213] ([i915#13749]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-mst.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#13749]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-13/igt@kms_dp_link_training@non-uhbr-mst.html - shard-tglu: NOTRUN -> [SKIP][215] ([i915#13749]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-mst.html - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#13749]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#13748]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#13707]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#13707]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#13707]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#13707]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-6/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#13707]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8812]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#8812]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3840]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#3840]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-5/igt@kms_dsc@dsc-with-formats.html - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-6/igt@kms_dsc@dsc-with-formats.html - shard-dg2: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#3840]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3840] / [i915#9053]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#1839]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#658]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-5/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637] / [i915#9934]) +6 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#9934]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#9934]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3637] / [i915#9934]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][238] ([i915#12745] / [i915#4839]) +1 other test incomplete [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk9/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][239] ([i915#4839]) +1 other test incomplete [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#3637] / [i915#9934]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9934]) +8 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#14544] / [i915#9934]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][243] ([i915#14600]) +1 other test fail [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#15643]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#15643] / [i915#5190]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][246] ([i915#15643]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#15643]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#15643]) +4 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#15643]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-mtlp: [PASS][250] -> [SKIP][251] ([i915#15672]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-mtlp-4/igt@kms_force_connector_basic@force-connector-state.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#1825]) +48 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#5354]) +9 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][254] +19 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2: [PASS][255] -> [FAIL][256] ([i915#15389] / [i915#6880]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#15102]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][258] ([i915#15102]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#15102]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15104]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][261] ([i915#15104]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#8708]) +8 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#15102]) +21 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][264] ([i915#14544] / [i915#15102] / [i915#3023]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#15102] / [i915#3458]) +7 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#1825]) +9 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][267] +54 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#15102] / [i915#3023]) +26 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#15102] / [i915#3458]) +10 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#10433] / [i915#15102] / [i915#3458]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#5439]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#9766]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#15104]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-glk11: NOTRUN -> [SKIP][274] +120 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#8708]) +5 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#14544] / [i915#1825]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#8708]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][278] +24 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#15102]) +11 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@bpc-switch: - shard-rkl: [PASS][280] -> [SKIP][281] ([i915#3555] / [i915#8228]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_hdr@bpc-switch.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html - shard-dg2: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@kms_hdr@bpc-switch-suspend.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#1187] / [i915#12713]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][287] ([i915#12713]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#15460]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#15459]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#14544] / [i915#6301]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][292] ([i915#6301]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-14/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#14544]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane@pixel-format-4-tiled-modifier: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#15709]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#14544] / [i915#15709]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#15709]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#15709]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-13/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#15709]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#15709]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#15608]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#15608]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#15709]) +2 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-7/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][303] ([i915#13026]) +1 other test incomplete [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk11/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][304] ([i915#12178]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][305] ([i915#7862]) +1 other test fail [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk10: NOTRUN -> [FAIL][306] ([i915#10647] / [i915#12169]) +1 other test fail [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][307] ([i915#10647] / [i915#12177]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk8/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][308] ([i915#10647]) +1 other test fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][309] ([i915#10647]) +3 other tests fail [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-x: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#11614] / [i915#3582]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#13958]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#14259]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#15329]) +3 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#15329]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#15329] / [i915#6953]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#15329]) +3 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#5354]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#12343]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][320] ([i915#12343]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#8430]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#15073]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][323] -> [SKIP][324] ([i915#15073]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: [PASS][325] -> [SKIP][326] ([i915#15073]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][327] -> [SKIP][328] ([i915#15073]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#15073]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][330] +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-3/igt@kms_pm_rpm@pc8-residency.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#6524]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][332] ([i915#6524]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-7/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#11520]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-snb: NOTRUN -> [SKIP][334] ([i915#11520]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-snb6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][335] ([i915#11520]) +3 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#12316]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#11520]) +4 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#11520] / [i915#14544]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][339] ([i915#11520]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk11/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk10: NOTRUN -> [SKIP][340] ([i915#11520]) +4 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#11520]) +12 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-tglu: NOTRUN -> [SKIP][342] ([i915#11520]) +7 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][343] ([i915#11520]) +15 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk5/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#9683]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +7 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-8/igt@kms_psr@fbc-psr-cursor-plane-move.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +8 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-14/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-cursor-plane-move@edp-1: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#9688]) +6 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-4/igt@kms_psr@fbc-psr-cursor-plane-move@edp-1.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][348] +421 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk2/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +24 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#9732]) +16 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-9/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@psr-cursor-plane-move: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#9732]) +8 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][352] ([i915#9685]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#9685]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [INCOMPLETE][354] ([i915#15492]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk8/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][355] ([i915#15500]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk10: NOTRUN -> [INCOMPLETE][356] ([i915#15492]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#12755] / [i915#5190]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][358] ([i915#5289]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][359] ([i915#5289]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-tglu: NOTRUN -> [SKIP][360] ([i915#5289]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#12755]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic: - shard-mtlp: [PASS][362] -> [FAIL][363] ([i915#15106]) +1 other test fail [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-mtlp-4/igt@kms_setmode@basic.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-3/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#8623]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][365] ([i915#8623]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-snb: NOTRUN -> [INCOMPLETE][366] ([i915#12276]) +1 other test incomplete [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-snb4/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][367] ([i915#12276]) +1 other test incomplete [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2: - shard-rkl: [PASS][368] -> [INCOMPLETE][369] ([i915#12276]) +1 other test incomplete [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#15243] / [i915#3555]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_vrr@flip-basic.html - shard-dg1: NOTRUN -> [SKIP][371] ([i915#3555]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-13/igt@kms_vrr@flip-basic.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#11920]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][373] ([i915#11920] / [i915#14544]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][374] ([i915#11920]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][375] ([i915#11920]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-3/igt@kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][376] ([i915#11920]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#9906]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@kms_vrr@max-min.html * igt@perf@polling@0-rcs0: - shard-tglu: [PASS][378] -> [FAIL][379] ([i915#10538]) +1 other test fail [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-tglu-7/igt@perf@polling@0-rcs0.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-5/igt@perf@polling@0-rcs0.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][380] -> [FAIL][381] ([i915#4349]) +5 other tests fail [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@most-busy-check-all@bcs0: - shard-dg2: [PASS][382] -> [FAIL][383] ([i915#15520]) +1 other test fail [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-7/igt@perf_pmu@most-busy-check-all@bcs0.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-4/igt@perf_pmu@most-busy-check-all@bcs0.html - shard-dg1: [PASS][384] -> [FAIL][385] ([i915#15520]) +1 other test fail [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-14/igt@perf_pmu@most-busy-check-all@bcs0.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-14/igt@perf_pmu@most-busy-check-all@bcs0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][386] -> [FAIL][387] ([i915#4349]) +3 other tests fail [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [PASS][388] -> [FAIL][389] ([i915#4349]) +5 other tests fail [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-3/igt@perf_pmu@semaphore-busy@vecs0.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-1/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][390] ([i915#3708]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-19/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][391] ([i915#3291] / [i915#3708]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#3708]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][393] ([i915#9917]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7: - shard-tglu-1: NOTRUN -> [FAIL][394] ([i915#12910]) +9 other tests fail [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#9917]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html - shard-dg1: NOTRUN -> [SKIP][396] ([i915#9917]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [FAIL][397] ([i915#12910]) +18 other tests fail [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-4/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html - shard-mtlp: NOTRUN -> [FAIL][398] ([i915#12910]) +8 other tests fail [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-5/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html * igt@sysfs_timeslice_duration@idempotent@vcs0: - shard-snb: NOTRUN -> [SKIP][399] +111 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-snb7/igt@sysfs_timeslice_duration@idempotent@vcs0.html #### Possible fixes #### * igt@gem_lmem_swapping@smem-oom: - shard-dg1: [FAIL][400] ([i915#15734]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-19/igt@gem_lmem_swapping@smem-oom.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-13/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [CRASH][402] ([i915#5493]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rpm@system-suspend: - shard-rkl: [INCOMPLETE][404] ([i915#13356]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@i915_pm_rpm@system-suspend.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-rkl: [ABORT][406] ([i915#15131]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@forcewake: - shard-rkl: [INCOMPLETE][408] ([i915#4817]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-3/igt@i915_suspend@forcewake.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@i915_suspend@forcewake.html * igt@i915_suspend@sysfs-reader: - shard-glk: [INCOMPLETE][410] ([i915#4817]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-glk2/igt@i915_suspend@sysfs-reader.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk4/igt@i915_suspend@sysfs-reader.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg1: [FAIL][412] ([i915#14888]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-14/igt@kms_async_flips@alternate-sync-async-flip.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][414] ([i915#15662]) -> [PASS][415] +1 other test pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][416] ([i915#15733] / [i915#5138]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_color_pipeline@plane-lut1d-lut1d: - shard-dg1: [DMESG-WARN][418] ([i915#4423]) -> [PASS][419] +2 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-16/igt@kms_color_pipeline@plane-lut1d-lut1d.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-12/igt@kms_color_pipeline@plane-lut1d-lut1d.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-rkl: [FAIL][420] ([i915#13566]) -> [PASS][421] +2 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][422] ([i915#13566]) -> [PASS][423] +3 other tests pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-suspend: - shard-rkl: [ABORT][424] ([i915#15132]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-1/igt@kms_cursor_crc@cursor-suspend.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg1: [FAIL][426] ([i915#4767]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-12/igt@kms_fbcon_fbt@fbc-suspend.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: [SKIP][428] ([i915#3555] / [i915#8228]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg1: [SKIP][430] ([i915#15073]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-14/igt@kms_pm_rpm@dpms-non-lpsp.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-13/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][432] ([i915#15073]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][434] ([i915#15073]) -> [PASS][435] +2 other tests pass [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [INCOMPLETE][436] ([i915#14419]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [INCOMPLETE][438] ([i915#14419]) -> [PASS][439] [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_pm_rpm@system-suspend-modeset.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: [FAIL][440] ([i915#4349]) -> [PASS][441] +5 other tests pass [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-mtlp-5/igt@perf_pmu@busy-idle@bcs0.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-mtlp-2/igt@perf_pmu@busy-idle@bcs0.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg2: [FAIL][442] ([i915#4349]) -> [PASS][443] +5 other tests pass [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-4/igt@perf_pmu@busy-idle@vcs0.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-5/igt@perf_pmu@busy-idle@vcs0.html - shard-dg1: [FAIL][444] ([i915#4349]) -> [PASS][445] +2 other tests pass [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-12/igt@perf_pmu@busy-idle@vcs0.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-19/igt@perf_pmu@busy-idle@vcs0.html #### Warnings #### * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: [SKIP][446] ([i915#11078] / [i915#14544]) -> [SKIP][447] ([i915#11078]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: [SKIP][448] ([i915#14544] / [i915#3281]) -> [SKIP][449] ([i915#3281]) +1 other test skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-range-active: - shard-rkl: [SKIP][450] ([i915#3281]) -> [SKIP][451] ([i915#14544] / [i915#3281]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-3/igt@gem_exec_reloc@basic-range-active.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@gem_exec_reloc@basic-range-active.html * igt@gem_lmem_swapping@random: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#4613]) -> [SKIP][453] ([i915#4613]) +2 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@gem_lmem_swapping@random.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@gem_lmem_swapping@random.html * igt@gem_media_vme: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#284]) -> [SKIP][455] ([i915#284]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@gem_media_vme.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@gem_media_vme.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-rkl: [SKIP][456] ([i915#3282]) -> [SKIP][457] ([i915#14544] / [i915#3282]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-3/igt@gem_partial_pwrite_pread@reads-snoop.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_pread@display: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#3282]) -> [SKIP][459] ([i915#3282]) +1 other test skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@gem_pread@display.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@gem_pread@display.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][460] ([i915#14544] / [i915#8411]) -> [SKIP][461] ([i915#8411]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][462] ([i915#8411]) -> [SKIP][463] ([i915#14544] / [i915#8411]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-4/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#2527]) -> [SKIP][465] ([i915#2527]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@gen9_exec_parse@bb-secure.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][466] ([i915#15479]) -> [SKIP][467] ([i915#14544] / [i915#15479]) +4 other tests skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-3/igt@i915_module_load@fault-injection@__uc_init.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][468] ([i915#6412]) -> [SKIP][469] ([i915#14544] / [i915#6412]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-2/igt@i915_module_load@resize-bar.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#6590]) -> [SKIP][471] ([i915#6590]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-rkl: [SKIP][472] ([i915#14544]) -> [SKIP][473] +9 other tests skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#5286]) -> [SKIP][475] ([i915#5286]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][476] ([i915#5286]) -> [SKIP][477] ([i915#14544] / [i915#5286]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: [SKIP][478] ([i915#3638]) -> [SKIP][479] ([i915#14544] / [i915#3638]) +1 other test skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][480] ([i915#6095]) -> [SKIP][481] ([i915#14544] / [i915#6095]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-3/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][482] ([i915#14098] / [i915#6095]) -> [SKIP][483] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-3/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][484] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][485] ([i915#14098] / [i915#6095]) +7 other tests skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#6095]) -> [SKIP][487] ([i915#6095]) +3 other tests skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-dg1: [SKIP][488] ([i915#6095]) -> [SKIP][489] ([i915#4423] / [i915#6095]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-13/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-17/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: [SKIP][490] ([i915#12313]) -> [SKIP][491] ([i915#12313] / [i915#14544]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: [SKIP][492] ([i915#11151] / [i915#7828]) -> [SKIP][493] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-3/igt@kms_chamelium_frames@vga-frame-dump.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: [SKIP][494] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][495] ([i915#11151] / [i915#7828]) +3 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][496] ([i915#14544] / [i915#6944] / [i915#9424]) -> [SKIP][497] ([i915#6944] / [i915#9424]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_content_protection@mei-interface.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_content_protection@mei-interface.html - shard-dg1: [SKIP][498] ([i915#6944] / [i915#9424]) -> [SKIP][499] ([i915#9433]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-19/igt@kms_content_protection@mei-interface.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][500] ([i915#6944] / [i915#7118]) -> [SKIP][501] ([i915#14544] / [i915#6944] / [i915#7118]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-5/igt@kms_content_protection@srm.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][503] ([i915#6944] / [i915#7118] / [i915#9424]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_content_protection@type1.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#3555]) -> [SKIP][505] ([i915#3555]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-rkl: [SKIP][506] ([i915#3555]) -> [SKIP][507] ([i915#14544] / [i915#3555]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: [SKIP][508] ([i915#13049] / [i915#14544]) -> [SKIP][509] ([i915#13049]) +1 other test skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-rkl: [SKIP][510] -> [SKIP][511] ([i915#14544]) +3 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][512] ([i915#13707]) -> [SKIP][513] ([i915#13707] / [i915#14544]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][515] ([i915#3555] / [i915#3840]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][516] ([i915#1839]) -> [SKIP][517] ([i915#14544] / [i915#1839]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-7/igt@kms_feature_discovery@display-3x.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][518] ([i915#14544] / [i915#658]) -> [SKIP][519] ([i915#658]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_feature_discovery@psr1.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#9934]) -> [SKIP][521] ([i915#9934]) +5 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-rkl: [SKIP][522] ([i915#9934]) -> [SKIP][523] ([i915#14544] / [i915#9934]) +2 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][524] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][525] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-glk3/igt@kms_flip@flip-vs-suspend.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk5/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][526] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][527] ([i915#12314] / [i915#12745] / [i915#6113]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#1825]) -> [SKIP][529] ([i915#1825]) +12 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-dg1: [SKIP][530] ([i915#4423]) -> [SKIP][531] [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg1: [SKIP][532] ([i915#8708]) -> [SKIP][533] ([i915#4423] / [i915#8708]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][534] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][535] ([i915#15102] / [i915#3458]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][536] ([i915#1825]) -> [SKIP][537] ([i915#14544] / [i915#1825]) +8 other tests skip [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-rkl: [SKIP][538] ([i915#14544] / [i915#15102]) -> [SKIP][539] ([i915#15102]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][540] ([i915#15102]) -> [SKIP][541] ([i915#14544] / [i915#15102]) +1 other test skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-rkl: [SKIP][542] ([i915#15102] / [i915#3023]) -> [SKIP][543] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][545] ([i915#15102] / [i915#3023]) +5 other tests skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: [SKIP][546] ([i915#13688] / [i915#14544]) -> [SKIP][547] ([i915#13688]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: [SKIP][548] ([i915#14544] / [i915#15458]) -> [SKIP][549] ([i915#15458]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: [SKIP][550] ([i915#14544] / [i915#15638] / [i915#15722]) -> [SKIP][551] ([i915#15638] / [i915#15722]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: [SKIP][552] ([i915#14544] / [i915#14712]) -> [SKIP][553] ([i915#14712]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: - shard-rkl: [SKIP][554] ([i915#15709]) -> [SKIP][555] ([i915#14544] / [i915#15709]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][556] ([i915#14544] / [i915#15709]) -> [SKIP][557] ([i915#15709]) +1 other test skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_pm_backlight@fade: - shard-rkl: [SKIP][558] ([i915#5354]) -> [SKIP][559] ([i915#14544] / [i915#5354]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-2/igt@kms_pm_backlight@fade.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: [SKIP][560] ([i915#14544] / [i915#9685]) -> [SKIP][561] ([i915#9685]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][562] ([i915#15752]) -> [SKIP][563] ([i915#15128]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][564] ([i915#3828]) -> [SKIP][565] ([i915#9340]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][566] ([i915#11520]) -> [SKIP][567] ([i915#11520] / [i915#14544]) +2 other tests skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][568] ([i915#11520] / [i915#14544]) -> [SKIP][569] ([i915#11520]) +2 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-dg1: [SKIP][570] ([i915#11520] / [i915#4423]) -> [SKIP][571] ([i915#11520]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-dg1-12/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-dg1-19/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: [SKIP][572] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][573] ([i915#1072] / [i915#9732]) +7 other tests skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: [SKIP][574] ([i915#1072] / [i915#9732]) -> [SKIP][575] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: [SKIP][576] ([i915#14544] / [i915#5289]) -> [SKIP][577] ([i915#5289]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: [SKIP][578] ([i915#14544] / [i915#9906]) -> [SKIP][579] ([i915#9906]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][580] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][581] ([i915#15243] / [i915#3555]) [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18139/shard-rkl-6/igt@kms_vrr@flip-suspend.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/shard-rkl-5/igt@kms_vrr@flip-suspend.html [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [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#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [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#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [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#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [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#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [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#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#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [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#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542 [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#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [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#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752 [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#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#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [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#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [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#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [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#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#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [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#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [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#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [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#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#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [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#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_8799 -> IGTPW_14751 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18139: 3fb8dfc6a69ee530c365c36f13bb79ef7f35af1d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14751: 14751 IGT_8799: 8799 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14751/index.html [-- Attachment #2: Type: text/html, Size: 191065 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-03-14 0:33 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-12 16:03 [PATCH v3 i-g-t 0/4] lib: Add NVL-P and WCL support himanshu.girotra 2026-03-12 16:03 ` [PATCH v3 i-g-t 1/4] lib/pciids: sync with kernel commit be07d8f707e4 himanshu.girotra 2026-03-12 16:03 ` [PATCH v3 i-g-t 2/4] lib: Add NVL-P support himanshu.girotra 2026-03-12 16:03 ` [PATCH v3 i-g-t 3/4] lib: Add WildcatLake support himanshu.girotra 2026-03-12 16:03 ` [PATCH v3 i-g-t 4/4] lib: Add WildcatLake to compute kernel tables himanshu.girotra 2026-03-13 5:21 ` Dandamudi, Priyanka 2026-03-12 21:46 ` ✓ Xe.CI.BAT: success for lib: Add NVL-P and WCL support (rev3) Patchwork 2026-03-12 22:00 ` ✓ i915.CI.BAT: " Patchwork 2026-03-14 0:29 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-14 0:33 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox