* [PATCH i-g-t 0/4] updates to fbc tests
@ 2026-03-26 7:25 Vinod Govindapillai
2026-03-26 7:25 ` [PATCH i-g-t 1/4] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks Vinod Govindapillai
` (7 more replies)
0 siblings, 8 replies; 16+ messages in thread
From: Vinod Govindapillai @ 2026-03-26 7:25 UTC (permalink / raw)
To: igt-dev; +Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma
Some of the fbc status texts are outdated, fix those.
FBC cannot be enabled if the plane size is too big. Such cases
to be treated as skips instead of failures.
And some cleanups where we query the current fbc status from
the debugfs.
Vinod Govindapillai (4):
tests/intel/kms_frontbuffer_tracking: update the outdated fbc status
checks
lib/i915/fbc: extract intel_fbc_get_fbc_status()
tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status()
tests/intel/kms_fbc_dirty_rect: check the plane size before fbc dirty
rect tests
lib/i915/intel_fbc.c | 35 +++++++++++++++-------
lib/i915/intel_fbc.h | 1 +
tests/intel/kms_fbc_dirty_rect.c | 19 ++++++++++--
tests/intel/kms_frontbuffer_tracking.c | 40 ++++++++++++++++++--------
4 files changed, 71 insertions(+), 24 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 16+ messages in thread* [PATCH i-g-t 1/4] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks 2026-03-26 7:25 [PATCH i-g-t 0/4] updates to fbc tests Vinod Govindapillai @ 2026-03-26 7:25 ` Vinod Govindapillai 2026-03-26 9:27 ` Jani Nikula 2026-03-26 7:25 ` [PATCH i-g-t 2/4] lib/i915/fbc: extract intel_fbc_get_fbc_status() Vinod Govindapillai ` (6 subsequent siblings) 7 siblings, 1 reply; 16+ messages in thread From: Vinod Govindapillai @ 2026-03-26 7:25 UTC (permalink / raw) To: igt-dev; +Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma Replace the fbc status check for "mode too large for compression" wchich is no longer being set by the driver with "plane size too big" and "surface size too big" fbc status checks. Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> --- tests/intel/kms_frontbuffer_tracking.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c index c16f63199..e764c9ce1 100644 --- a/tests/intel/kms_frontbuffer_tracking.c +++ b/tests/intel/kms_frontbuffer_tracking.c @@ -1664,15 +1664,23 @@ static bool fbc_stride_not_supported(void) char buf[128]; debugfs_read_crtc("i915_fbc_status", buf); - return strstr(buf, "FBC disabled: framebuffer stride not supported\n"); + return strstr(buf, "FBC disabled: stride not supported\n"); } -static bool fbc_mode_too_large(void) +static bool fbc_plane_size_too_big(void) { char buf[128]; debugfs_read_crtc("i915_fbc_status", buf); - return strstr(buf, "FBC disabled: mode too large for compression\n"); + return strstr(buf, "FBC disabled: plane size too big\n"); +} + +static bool fbc_surface_size_too_big(void) +{ + char buf[128]; + + debugfs_read_crtc("i915_fbc_status", buf); + return strstr(buf, "FBC disabled: surface size too big\n"); } static bool fbc_psr_not_possible(void) @@ -2356,7 +2364,8 @@ static void do_status_assertions(int flags) if (flags & ASSERT_FBC_ENABLED) { igt_require(!fbc_not_enough_stolen()); igt_require(!fbc_stride_not_supported()); - igt_require(!fbc_mode_too_large()); + igt_require(!fbc_plane_size_too_big()); + igt_require(!fbc_surface_size_too_big()); igt_require(!fbc_psr_not_possible()); if (!intel_fbc_wait_until_enabled(prim_mode_params.crtc)) { igt_assert_f(intel_fbc_is_enabled(prim_mode_params.crtc, IGT_LOG_WARN), -- 2.43.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t 1/4] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks 2026-03-26 7:25 ` [PATCH i-g-t 1/4] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks Vinod Govindapillai @ 2026-03-26 9:27 ` Jani Nikula 2026-03-26 22:45 ` Ville Syrjälä 0 siblings, 1 reply; 16+ messages in thread From: Jani Nikula @ 2026-03-26 9:27 UTC (permalink / raw) To: Vinod Govindapillai, igt-dev Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma On Thu, 26 Mar 2026, Vinod Govindapillai <vinod.govindapillai@intel.com> wrote: > Replace the fbc status check for "mode too large for compression" wchich > is no longer being set by the driver with "plane size too big" and > "surface size too big" fbc status checks. > > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> > --- > tests/intel/kms_frontbuffer_tracking.c | 17 +++++++++++++---- > 1 file changed, 13 insertions(+), 4 deletions(-) > > diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c > index c16f63199..e764c9ce1 100644 > --- a/tests/intel/kms_frontbuffer_tracking.c > +++ b/tests/intel/kms_frontbuffer_tracking.c > @@ -1664,15 +1664,23 @@ static bool fbc_stride_not_supported(void) > char buf[128]; > > debugfs_read_crtc("i915_fbc_status", buf); > - return strstr(buf, "FBC disabled: framebuffer stride not supported\n"); > + return strstr(buf, "FBC disabled: stride not supported\n"); > } > > -static bool fbc_mode_too_large(void) > +static bool fbc_plane_size_too_big(void) > { > char buf[128]; > > debugfs_read_crtc("i915_fbc_status", buf); > - return strstr(buf, "FBC disabled: mode too large for compression\n"); > + return strstr(buf, "FBC disabled: plane size too big\n"); > +} > + > +static bool fbc_surface_size_too_big(void) > +{ > + char buf[128]; > + > + debugfs_read_crtc("i915_fbc_status", buf); > + return strstr(buf, "FBC disabled: surface size too big\n"); > } > > static bool fbc_psr_not_possible(void) > @@ -2356,7 +2364,8 @@ static void do_status_assertions(int flags) > if (flags & ASSERT_FBC_ENABLED) { > igt_require(!fbc_not_enough_stolen()); > igt_require(!fbc_stride_not_supported()); > - igt_require(!fbc_mode_too_large()); > + igt_require(!fbc_plane_size_too_big()); > + igt_require(!fbc_surface_size_too_big()); I think the problem with the current implementation and this series is that it still keeps all those i915_fbc_status reads in place, instead of reading it *once* and then figuring it out. You could e.g. have a function that reads i915_fbc_status, parses it into, I don't know, an enum on the igt side, with some handling of unknown "FBC disabled: xxx" messages, and returns that. And then you get that status once, and check that, instead of reading the file N times. BR, Jani. > igt_require(!fbc_psr_not_possible()); > if (!intel_fbc_wait_until_enabled(prim_mode_params.crtc)) { > igt_assert_f(intel_fbc_is_enabled(prim_mode_params.crtc, IGT_LOG_WARN), -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t 1/4] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks 2026-03-26 9:27 ` Jani Nikula @ 2026-03-26 22:45 ` Ville Syrjälä 2026-03-31 10:49 ` Govindapillai, Vinod 2026-04-10 14:14 ` Kamil Konieczny 0 siblings, 2 replies; 16+ messages in thread From: Ville Syrjälä @ 2026-03-26 22:45 UTC (permalink / raw) To: Jani Nikula Cc: Vinod Govindapillai, igt-dev, santhosh.reddy.guddati, swati2.sharma On Thu, Mar 26, 2026 at 11:27:47AM +0200, Jani Nikula wrote: > On Thu, 26 Mar 2026, Vinod Govindapillai <vinod.govindapillai@intel.com> wrote: > > Replace the fbc status check for "mode too large for compression" wchich > > is no longer being set by the driver with "plane size too big" and > > "surface size too big" fbc status checks. > > > > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> > > --- > > tests/intel/kms_frontbuffer_tracking.c | 17 +++++++++++++---- > > 1 file changed, 13 insertions(+), 4 deletions(-) > > > > diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c > > index c16f63199..e764c9ce1 100644 > > --- a/tests/intel/kms_frontbuffer_tracking.c > > +++ b/tests/intel/kms_frontbuffer_tracking.c > > @@ -1664,15 +1664,23 @@ static bool fbc_stride_not_supported(void) > > char buf[128]; > > > > debugfs_read_crtc("i915_fbc_status", buf); > > - return strstr(buf, "FBC disabled: framebuffer stride not supported\n"); > > + return strstr(buf, "FBC disabled: stride not supported\n"); > > } > > > > -static bool fbc_mode_too_large(void) > > +static bool fbc_plane_size_too_big(void) > > { > > char buf[128]; > > > > debugfs_read_crtc("i915_fbc_status", buf); > > - return strstr(buf, "FBC disabled: mode too large for compression\n"); > > + return strstr(buf, "FBC disabled: plane size too big\n"); > > +} > > + > > +static bool fbc_surface_size_too_big(void) > > +{ > > + char buf[128]; > > + > > + debugfs_read_crtc("i915_fbc_status", buf); > > + return strstr(buf, "FBC disabled: surface size too big\n"); > > } > > > > static bool fbc_psr_not_possible(void) > > @@ -2356,7 +2364,8 @@ static void do_status_assertions(int flags) > > if (flags & ASSERT_FBC_ENABLED) { > > igt_require(!fbc_not_enough_stolen()); > > igt_require(!fbc_stride_not_supported()); > > - igt_require(!fbc_mode_too_large()); > > + igt_require(!fbc_plane_size_too_big()); > > + igt_require(!fbc_surface_size_too_big()); > > I think the problem with the current implementation and this series is > that it still keeps all those i915_fbc_status reads in place, instead of > reading it *once* and then figuring it out. > > You could e.g. have a function that reads i915_fbc_status, parses it > into, I don't know, an enum on the igt side, with some handling of > unknown "FBC disabled: xxx" messages, and returns that. > > And then you get that status once, and check that, instead of reading > the file N times. The other big problem is that the buffer size used for this is too small. A while ago I noticed that it was getting chopped off so I have a patch in some branch that doubles it. But dunno if even that is sufficient on the latest platforms with more and more FBC capable planes. Someone should probably check that... -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t 1/4] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks 2026-03-26 22:45 ` Ville Syrjälä @ 2026-03-31 10:49 ` Govindapillai, Vinod 2026-04-10 14:14 ` Kamil Konieczny 1 sibling, 0 replies; 16+ messages in thread From: Govindapillai, Vinod @ 2026-03-31 10:49 UTC (permalink / raw) To: ville.syrjala@linux.intel.com, Nikula, Jani Cc: igt-dev@lists.freedesktop.org, Reddy Guddati, Santhosh, Sharma, Swati2 On Fri, 2026-03-27 at 00:45 +0200, Ville Syrjälä wrote: > On Thu, Mar 26, 2026 at 11:27:47AM +0200, Jani Nikula wrote: > > On Thu, 26 Mar 2026, Vinod Govindapillai > > <vinod.govindapillai@intel.com> wrote: > > > Replace the fbc status check for "mode too large for compression" > > > wchich > > > is no longer being set by the driver with "plane size too big" > > > and > > > "surface size too big" fbc status checks. > > > > > > Signed-off-by: Vinod Govindapillai > > > <vinod.govindapillai@intel.com> > > > --- > > > tests/intel/kms_frontbuffer_tracking.c | 17 +++++++++++++---- > > > 1 file changed, 13 insertions(+), 4 deletions(-) > > > > > > diff --git a/tests/intel/kms_frontbuffer_tracking.c > > > b/tests/intel/kms_frontbuffer_tracking.c > > > index c16f63199..e764c9ce1 100644 > > > --- a/tests/intel/kms_frontbuffer_tracking.c > > > +++ b/tests/intel/kms_frontbuffer_tracking.c > > > @@ -1664,15 +1664,23 @@ static bool > > > fbc_stride_not_supported(void) > > > char buf[128]; > > > > > > debugfs_read_crtc("i915_fbc_status", buf); > > > - return strstr(buf, "FBC disabled: framebuffer stride not > > > supported\n"); > > > + return strstr(buf, "FBC disabled: stride not > > > supported\n"); > > > } > > > > > > -static bool fbc_mode_too_large(void) > > > +static bool fbc_plane_size_too_big(void) > > > { > > > char buf[128]; > > > > > > debugfs_read_crtc("i915_fbc_status", buf); > > > - return strstr(buf, "FBC disabled: mode too large for > > > compression\n"); > > > + return strstr(buf, "FBC disabled: plane size too > > > big\n"); > > > +} > > > + > > > +static bool fbc_surface_size_too_big(void) > > > +{ > > > + char buf[128]; > > > + > > > + debugfs_read_crtc("i915_fbc_status", buf); > > > + return strstr(buf, "FBC disabled: surface size too > > > big\n"); > > > } > > > > > > static bool fbc_psr_not_possible(void) > > > @@ -2356,7 +2364,8 @@ static void do_status_assertions(int flags) > > > if (flags & ASSERT_FBC_ENABLED) { > > > igt_require(!fbc_not_enough_stolen()); > > > igt_require(!fbc_stride_not_supported()); > > > - igt_require(!fbc_mode_too_large()); > > > + igt_require(!fbc_plane_size_too_big()); > > > + igt_require(!fbc_surface_size_too_big()); > > > > I think the problem with the current implementation and this series > > is > > that it still keeps all those i915_fbc_status reads in place, > > instead of > > reading it *once* and then figuring it out. > > > > You could e.g. have a function that reads i915_fbc_status, parses > > it > > into, I don't know, an enum on the igt side, with some handling of > > unknown "FBC disabled: xxx" messages, and returns that. > > > > And then you get that status once, and check that, instead of > > reading > > the file N times. > > The other big problem is that the buffer size used for this is too > small. A while ago I noticed that it was getting chopped off so I > have a patch in some branch that doubles it. But dunno if even that > is sufficient on the latest platforms with more and more FBC capable > planes. Someone should probably check that... > Just to clarify, I had considered this when I was reviewing the IGT patch for enabling FBC on planes 0, 1 and 2. The fbc statuc check for planes do use a bigger buffer. I did not asked for a change to these above FBC disabled status-es, as the driver is printing the disabled status on the first line itself and existing buffer length should cover. But, anyway, I will change this as well to reflect the bigger buffer size and probably use one single declaration on lib/tests/intel_fbc.h BR Vinod ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t 1/4] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks 2026-03-26 22:45 ` Ville Syrjälä 2026-03-31 10:49 ` Govindapillai, Vinod @ 2026-04-10 14:14 ` Kamil Konieczny 1 sibling, 0 replies; 16+ messages in thread From: Kamil Konieczny @ 2026-04-10 14:14 UTC (permalink / raw) To: Ville Syrjälä Cc: Jani Nikula, Vinod Govindapillai, igt-dev, santhosh.reddy.guddati, swati2.sharma, Juha-Pekka Heikkila, Juha-Pekka Heikkila, Karthik B S Hi Ville, On 2026-03-27 at 00:45:06 +0200, Ville Syrjälä wrote: > On Thu, Mar 26, 2026 at 11:27:47AM +0200, Jani Nikula wrote: > > On Thu, 26 Mar 2026, Vinod Govindapillai <vinod.govindapillai@intel.com> wrote: > > > Replace the fbc status check for "mode too large for compression" wchich > > > is no longer being set by the driver with "plane size too big" and > > > "surface size too big" fbc status checks. > > > > > > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> > > > --- > > > tests/intel/kms_frontbuffer_tracking.c | 17 +++++++++++++---- > > > 1 file changed, 13 insertions(+), 4 deletions(-) > > > > > > diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c > > > index c16f63199..e764c9ce1 100644 > > > --- a/tests/intel/kms_frontbuffer_tracking.c > > > +++ b/tests/intel/kms_frontbuffer_tracking.c > > > @@ -1664,15 +1664,23 @@ static bool fbc_stride_not_supported(void) > > > char buf[128]; > > > > > > debugfs_read_crtc("i915_fbc_status", buf); > > > - return strstr(buf, "FBC disabled: framebuffer stride not supported\n"); > > > + return strstr(buf, "FBC disabled: stride not supported\n"); > > > } > > > > > > -static bool fbc_mode_too_large(void) > > > +static bool fbc_plane_size_too_big(void) > > > { > > > char buf[128]; > > > > > > debugfs_read_crtc("i915_fbc_status", buf); > > > - return strstr(buf, "FBC disabled: mode too large for compression\n"); > > > + return strstr(buf, "FBC disabled: plane size too big\n"); > > > +} > > > + > > > +static bool fbc_surface_size_too_big(void) > > > +{ > > > + char buf[128]; > > > + > > > + debugfs_read_crtc("i915_fbc_status", buf); > > > + return strstr(buf, "FBC disabled: surface size too big\n"); > > > } > > > > > > static bool fbc_psr_not_possible(void) > > > @@ -2356,7 +2364,8 @@ static void do_status_assertions(int flags) > > > if (flags & ASSERT_FBC_ENABLED) { > > > igt_require(!fbc_not_enough_stolen()); > > > igt_require(!fbc_stride_not_supported()); > > > - igt_require(!fbc_mode_too_large()); > > > + igt_require(!fbc_plane_size_too_big()); > > > + igt_require(!fbc_surface_size_too_big()); > > > > I think the problem with the current implementation and this series is > > that it still keeps all those i915_fbc_status reads in place, instead of > > reading it *once* and then figuring it out. > > > > You could e.g. have a function that reads i915_fbc_status, parses it > > into, I don't know, an enum on the igt side, with some handling of > > unknown "FBC disabled: xxx" messages, and returns that. > > > > And then you get that status once, and check that, instead of reading > > the file N times. > > The other big problem is that the buffer size used for this is too > small. A while ago I noticed that it was getting chopped off so I > have a patch in some branch that doubles it. But dunno if even that > is sufficient on the latest platforms with more and more FBC capable > planes. Someone should probably check that... > +cc few more KMS devs Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Cc: Juha-Pekka Heikkila <juha-pekka.heikkila@intel.com> Cc: Karthik B S <karthik.b.s@intel.com> Btw maybe it is a good candidate for a new work-item on igt GitLab? Regards, Kamil > -- > Ville Syrjälä > Intel ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH i-g-t 2/4] lib/i915/fbc: extract intel_fbc_get_fbc_status() 2026-03-26 7:25 [PATCH i-g-t 0/4] updates to fbc tests Vinod Govindapillai 2026-03-26 7:25 ` [PATCH i-g-t 1/4] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks Vinod Govindapillai @ 2026-03-26 7:25 ` Vinod Govindapillai 2026-03-26 7:25 ` [PATCH i-g-t 3/4] tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status() Vinod Govindapillai ` (5 subsequent siblings) 7 siblings, 0 replies; 16+ messages in thread From: Vinod Govindapillai @ 2026-03-26 7:25 UTC (permalink / raw) To: igt-dev; +Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma Code to read the FBC status from the debugfs is being duplicated in many places. Extract intel_fbc_get_fbc_status() to be used as the single source to read the current FBC status. Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> --- lib/i915/intel_fbc.c | 35 +++++++++++++++++++++++++---------- lib/i915/intel_fbc.h | 1 + 2 files changed, 26 insertions(+), 10 deletions(-) diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c index b8c714d43..81aa5c5a5 100644 --- a/lib/i915/intel_fbc.c +++ b/lib/i915/intel_fbc.c @@ -22,6 +22,27 @@ void intel_fbc_disable(igt_display_t *display) igt_set_module_param_int(display->drm_fd, "enable_fbc", 0); } +/** + * intel_fbc_get_fbc_status + * @crtc: CRTC + * @fbc_status: Buffer to fill the current fbc status + * @buf_size: Size of the buffer to be filled + * + * Read the debugfs entry for current fbc status of a crtc + * + * Returns: + * None + */ +void intel_fbc_get_fbc_status(igt_crtc_t *crtc, char *fbc_status, int buf_size) +{ + int dir; + + dir = igt_crtc_debugfs_dir(crtc); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_fbc_status", fbc_status, buf_size); + close(dir); +} + /** * intel_fbc_supported: * @crtc: CRTC @@ -34,12 +55,9 @@ void intel_fbc_disable(igt_display_t *display) bool intel_fbc_supported(igt_crtc_t *crtc) { char buf[FBC_STATUS_BUF_LEN]; - int dir; - dir = igt_crtc_debugfs_dir(crtc); - igt_require_fd(dir); - igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf)); - close(dir); + intel_fbc_get_fbc_status(crtc, buf, sizeof(buf)); + if (*buf == '\0') return false; @@ -51,12 +69,9 @@ static bool _intel_fbc_is_enabled(igt_crtc_t *crtc, int log_level, char *last_fb { char buf[FBC_STATUS_BUF_LEN]; bool print = true; - int dir; - dir = igt_crtc_debugfs_dir(crtc); - igt_require_fd(dir); - igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf)); - close(dir); + intel_fbc_get_fbc_status(crtc, buf, sizeof(buf)); + if (log_level != IGT_LOG_DEBUG) last_fbc_buf[0] = '\0'; else if (strcmp(last_fbc_buf, buf)) diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h index 8e2662824..99ea3ffe1 100644 --- a/lib/i915/intel_fbc.h +++ b/lib/i915/intel_fbc.h @@ -17,5 +17,6 @@ bool intel_fbc_wait_until_enabled(igt_crtc_t *crtc); bool intel_fbc_is_enabled(igt_crtc_t *crtc, int log_level); bool intel_fbc_plane_size_supported(igt_display_t *display, uint32_t width, uint32_t height); bool intel_fbc_supported_for_psr_mode(igt_display_t *display, enum psr_mode mode); +void intel_fbc_get_fbc_status(igt_crtc_t *crtc, char *fbc_status, int buf_size); #endif -- 2.43.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH i-g-t 3/4] tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status() 2026-03-26 7:25 [PATCH i-g-t 0/4] updates to fbc tests Vinod Govindapillai 2026-03-26 7:25 ` [PATCH i-g-t 1/4] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks Vinod Govindapillai 2026-03-26 7:25 ` [PATCH i-g-t 2/4] lib/i915/fbc: extract intel_fbc_get_fbc_status() Vinod Govindapillai @ 2026-03-26 7:25 ` Vinod Govindapillai 2026-03-26 7:25 ` [PATCH i-g-t 4/4] tests/intel/kms_fbc_dirty_rect: check the plane size before fbc dirty rect tests Vinod Govindapillai ` (4 subsequent siblings) 7 siblings, 0 replies; 16+ messages in thread From: Vinod Govindapillai @ 2026-03-26 7:25 UTC (permalink / raw) To: igt-dev; +Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma Use the common intel_fbc_get_fbc_status() to get the fbc status Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> --- tests/intel/kms_frontbuffer_tracking.c | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c index e764c9ce1..ef083fe60 100644 --- a/tests/intel/kms_frontbuffer_tracking.c +++ b/tests/intel/kms_frontbuffer_tracking.c @@ -1574,8 +1574,8 @@ static struct timespec fbc_get_last_action(void) char *action; ssize_t n_read; + intel_fbc_get_fbc_status(prim_mode_params.crtc, buf, sizeof(buf)); - debugfs_read_crtc("i915_fbc_status", buf); action = strstr(buf, "\nLast action:"); igt_assert(action); @@ -1623,8 +1623,8 @@ static void fbc_setup_last_action(void) char buf[128]; char *action; + intel_fbc_get_fbc_status(prim_mode_params.crtc, buf, sizeof(buf)); - debugfs_read_crtc("i915_fbc_status", buf); action = strstr(buf, "\nLast action:"); if (!action) { igt_info("FBC last action not supported\n"); @@ -1642,7 +1642,8 @@ static bool fbc_is_compressing(void) { char buf[128]; - debugfs_read_crtc("i915_fbc_status", buf); + intel_fbc_get_fbc_status(prim_mode_params.crtc, buf, sizeof(buf)); + return strstr(buf, "\nCompressing: yes\n") != NULL; } @@ -1655,7 +1656,8 @@ static bool fbc_not_enough_stolen(void) { char buf[128]; - debugfs_read_crtc("i915_fbc_status", buf); + intel_fbc_get_fbc_status(prim_mode_params.crtc, buf, sizeof(buf)); + return strstr(buf, "FBC disabled: not enough stolen memory\n"); } @@ -1663,7 +1665,8 @@ static bool fbc_stride_not_supported(void) { char buf[128]; - debugfs_read_crtc("i915_fbc_status", buf); + intel_fbc_get_fbc_status(prim_mode_params.crtc, buf, sizeof(buf)); + return strstr(buf, "FBC disabled: stride not supported\n"); } @@ -1671,7 +1674,8 @@ static bool fbc_plane_size_too_big(void) { char buf[128]; - debugfs_read_crtc("i915_fbc_status", buf); + intel_fbc_get_fbc_status(prim_mode_params.crtc, buf, sizeof(buf)); + return strstr(buf, "FBC disabled: plane size too big\n"); } @@ -1679,7 +1683,8 @@ static bool fbc_surface_size_too_big(void) { char buf[128]; - debugfs_read_crtc("i915_fbc_status", buf); + intel_fbc_get_fbc_status(prim_mode_params.crtc, buf, sizeof(buf)); + return strstr(buf, "FBC disabled: surface size too big\n"); } @@ -1687,7 +1692,8 @@ static bool fbc_psr_not_possible(void) { char buf[128]; - debugfs_read_crtc("i915_fbc_status", buf); + intel_fbc_get_fbc_status(prim_mode_params.crtc, buf, sizeof(buf)); + return strstr(buf, "FBC disabled: PSR1 enabled (Wa_14016291713)"); } @@ -1698,7 +1704,8 @@ static bool fbc_enable_per_plane(int plane_index, igt_crtc_t *crtc) sprintf(buf_plane, "%d%s", plane_index, igt_crtc_name(crtc)); - debugfs_read_crtc("i915_fbc_status", buf); + intel_fbc_get_fbc_status(prim_mode_params.crtc, buf, sizeof(buf)); + return strstr(strstr(buf, "*"), buf_plane); } -- 2.43.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH i-g-t 4/4] tests/intel/kms_fbc_dirty_rect: check the plane size before fbc dirty rect tests 2026-03-26 7:25 [PATCH i-g-t 0/4] updates to fbc tests Vinod Govindapillai ` (2 preceding siblings ...) 2026-03-26 7:25 ` [PATCH i-g-t 3/4] tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status() Vinod Govindapillai @ 2026-03-26 7:25 ` Vinod Govindapillai 2026-03-27 5:05 ` Reddy Guddati, Santhosh 2026-03-26 13:43 ` ✓ Xe.CI.BAT: success for updates to fbc tests Patchwork ` (3 subsequent siblings) 7 siblings, 1 reply; 16+ messages in thread From: Vinod Govindapillai @ 2026-03-26 7:25 UTC (permalink / raw) To: igt-dev; +Cc: vinod.govindapillai, santhosh.reddy.guddati, swati2.sharma If the FBC cannot support the plan size, skip the tests Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> --- tests/intel/kms_fbc_dirty_rect.c | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/tests/intel/kms_fbc_dirty_rect.c b/tests/intel/kms_fbc_dirty_rect.c index efbd46985..ee13e95dd 100644 --- a/tests/intel/kms_fbc_dirty_rect.c +++ b/tests/intel/kms_fbc_dirty_rect.c @@ -401,6 +401,22 @@ static void cleanup(data_t *data) igt_display_commit2(&data->display, COMMIT_ATOMIC); } +static bool check_fbc_supported(data_t *data) +{ + if (!intel_fbc_supported(data->crtc)) { + igt_info("FBC not supported by the chipset on pipe\n"); + return false; + } + + if (!intel_fbc_plane_size_supported(&data->display, data->mode->hdisplay, + data->mode->vdisplay)) { + igt_info("Plane size not supported as per FBC size restrictions\n"); + return false; + } + + return true; +} + static bool prepare_test(data_t *data) { igt_display_reset(&data->display); @@ -411,8 +427,7 @@ static bool prepare_test(data_t *data) data->pipe_crc = igt_crtc_crc_new(data->crtc, IGT_PIPE_CRC_SOURCE_AUTO); - igt_require_f(intel_fbc_supported(data->crtc), - "FBC not supported by the chipset on pipe\n"); + igt_require_f(check_fbc_supported(data), "FBC is not supported with this configuration\n"); if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL) || psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_2, NULL) || -- 2.43.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t 4/4] tests/intel/kms_fbc_dirty_rect: check the plane size before fbc dirty rect tests 2026-03-26 7:25 ` [PATCH i-g-t 4/4] tests/intel/kms_fbc_dirty_rect: check the plane size before fbc dirty rect tests Vinod Govindapillai @ 2026-03-27 5:05 ` Reddy Guddati, Santhosh 2026-03-27 8:11 ` Govindapillai, Vinod 0 siblings, 1 reply; 16+ messages in thread From: Reddy Guddati, Santhosh @ 2026-03-27 5:05 UTC (permalink / raw) To: Vinod Govindapillai, igt-dev; +Cc: swati2.sharma Hi Vinod, On 26-03-2026 12:55, Vinod Govindapillai wrote: > If the FBC cannot support the plan size, skip the tests > %s/plan/plane > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> > --- > tests/intel/kms_fbc_dirty_rect.c | 19 +++++++++++++++++-- > 1 file changed, 17 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/kms_fbc_dirty_rect.c b/tests/intel/kms_fbc_dirty_rect.c > index efbd46985..ee13e95dd 100644 > --- a/tests/intel/kms_fbc_dirty_rect.c > +++ b/tests/intel/kms_fbc_dirty_rect.c > @@ -401,6 +401,22 @@ static void cleanup(data_t *data) > igt_display_commit2(&data->display, COMMIT_ATOMIC); > } > > +static bool check_fbc_supported(data_t *data) > +{ > + if (!intel_fbc_supported(data->crtc)) { > + igt_info("FBC not supported by the chipset on pipe\n"); > + return false; > + } > + > + if (!intel_fbc_plane_size_supported(&data->display, data->mode->hdisplay, > + data->mode->vdisplay)) { > + igt_info("Plane size not supported as per FBC size restrictions\n"); > + return false; > + } > + > + return true; > +} > + > static bool prepare_test(data_t *data) > { > igt_display_reset(&data->display); > @@ -411,8 +427,7 @@ static bool prepare_test(data_t *data) > data->pipe_crc = igt_crtc_crc_new(data->crtc, > IGT_PIPE_CRC_SOURCE_AUTO); > > - igt_require_f(intel_fbc_supported(data->crtc), > - "FBC not supported by the chipset on pipe\n"); > + igt_require_f(check_fbc_supported(data), "FBC is not supported with this configuration\n"); > Since the change in fbc dirty rectangle is independent of other changes in the series and imho this can be a split as separate patch from blocking it. Regards, Santhosh > if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL) || > psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_2, NULL) || ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t 4/4] tests/intel/kms_fbc_dirty_rect: check the plane size before fbc dirty rect tests 2026-03-27 5:05 ` Reddy Guddati, Santhosh @ 2026-03-27 8:11 ` Govindapillai, Vinod 2026-03-31 7:22 ` Reddy Guddati, Santhosh 0 siblings, 1 reply; 16+ messages in thread From: Govindapillai, Vinod @ 2026-03-27 8:11 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Reddy Guddati, Santhosh; +Cc: Sharma, Swati2 On Fri, 2026-03-27 at 10:35 +0530, Reddy Guddati, Santhosh wrote: > Hi Vinod, > > On 26-03-2026 12:55, Vinod Govindapillai wrote: > > If the FBC cannot support the plan size, skip the tests > > > %s/plan/plane > > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> > > --- > > tests/intel/kms_fbc_dirty_rect.c | 19 +++++++++++++++++-- > > 1 file changed, 17 insertions(+), 2 deletions(-) > > > > diff --git a/tests/intel/kms_fbc_dirty_rect.c > > b/tests/intel/kms_fbc_dirty_rect.c > > index efbd46985..ee13e95dd 100644 > > --- a/tests/intel/kms_fbc_dirty_rect.c > > +++ b/tests/intel/kms_fbc_dirty_rect.c > > @@ -401,6 +401,22 @@ static void cleanup(data_t *data) > > igt_display_commit2(&data->display, COMMIT_ATOMIC); > > } > > > > +static bool check_fbc_supported(data_t *data) > > +{ > > + if (!intel_fbc_supported(data->crtc)) { > > + igt_info("FBC not supported by the chipset on > > pipe\n"); > > + return false; > > + } > > + > > + if (!intel_fbc_plane_size_supported(&data->display, data- > > >mode->hdisplay, > > + data->mode->vdisplay)) > > { > > + igt_info("Plane size not supported as per FBC size > > restrictions\n"); > > + return false; > > + } > > + > > + return true; > > +} > > + > > static bool prepare_test(data_t *data) > > { > > igt_display_reset(&data->display); > > @@ -411,8 +427,7 @@ static bool prepare_test(data_t *data) > > data->pipe_crc = igt_crtc_crc_new(data->crtc, > > > > IGT_PIPE_CRC_SOURCE_AUTO); > > > > - igt_require_f(intel_fbc_supported(data->crtc), > > - "FBC not supported by the chipset on > > pipe\n"); > > + igt_require_f(check_fbc_supported(data), "FBC is not > > supported with this configuration\n"); > > > Since the change in fbc dirty rectangle is independent of other > changes > in the series and imho this can be a split as separate patch from > blocking it. Yes. No dependency to other patches in this series. If this can be RB- ed with that typo fixed in the commit message, only this patch could be cherry-picked and merge and fix the typo at the merge time? I guess no need to resend only this patch again with typo fixed and waste CI. I don't have commit rights. Could you pls do that. thanks Vinod > > Regards, > Santhosh > > if (psr_sink_support(data->drm_fd, data->debugfs_fd, > > PSR_MODE_1, NULL) || > > psr_sink_support(data->drm_fd, data->debugfs_fd, > > PSR_MODE_2, NULL) || > ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t 4/4] tests/intel/kms_fbc_dirty_rect: check the plane size before fbc dirty rect tests 2026-03-27 8:11 ` Govindapillai, Vinod @ 2026-03-31 7:22 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 16+ messages in thread From: Reddy Guddati, Santhosh @ 2026-03-31 7:22 UTC (permalink / raw) To: Govindapillai, Vinod, igt-dev@lists.freedesktop.org; +Cc: Sharma, Swati2 On 27-03-2026 13:41, Govindapillai, Vinod wrote: > On Fri, 2026-03-27 at 10:35 +0530, Reddy Guddati, Santhosh wrote: >> Hi Vinod, >> >> On 26-03-2026 12:55, Vinod Govindapillai wrote: >>> If the FBC cannot support the plan size, skip the tests >>> >> %s/plan/plane >>> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> >>> --- >>> tests/intel/kms_fbc_dirty_rect.c | 19 +++++++++++++++++-- >>> 1 file changed, 17 insertions(+), 2 deletions(-) >>> >>> diff --git a/tests/intel/kms_fbc_dirty_rect.c >>> b/tests/intel/kms_fbc_dirty_rect.c >>> index efbd46985..ee13e95dd 100644 >>> --- a/tests/intel/kms_fbc_dirty_rect.c >>> +++ b/tests/intel/kms_fbc_dirty_rect.c >>> @@ -401,6 +401,22 @@ static void cleanup(data_t *data) >>> igt_display_commit2(&data->display, COMMIT_ATOMIC); >>> } >>> >>> +static bool check_fbc_supported(data_t *data) >>> +{ >>> + if (!intel_fbc_supported(data->crtc)) { >>> + igt_info("FBC not supported by the chipset on >>> pipe\n"); >>> + return false; >>> + } >>> + >>> + if (!intel_fbc_plane_size_supported(&data->display, data- >>>> mode->hdisplay, >>> + data->mode->vdisplay)) >>> { >>> + igt_info("Plane size not supported as per FBC size >>> restrictions\n"); >>> + return false; >>> + } >>> + >>> + return true; >>> +} >>> + >>> static bool prepare_test(data_t *data) >>> { >>> igt_display_reset(&data->display); >>> @@ -411,8 +427,7 @@ static bool prepare_test(data_t *data) >>> data->pipe_crc = igt_crtc_crc_new(data->crtc, >>> >>> IGT_PIPE_CRC_SOURCE_AUTO); >>> >>> - igt_require_f(intel_fbc_supported(data->crtc), >>> - "FBC not supported by the chipset on >>> pipe\n"); >>> + igt_require_f(check_fbc_supported(data), "FBC is not >>> supported with this configuration\n"); >>> >> Since the change in fbc dirty rectangle is independent of other >> changes >> in the series and imho this can be a split as separate patch from >> blocking it. > > Yes. No dependency to other patches in this series. If this can be RB- > ed with that typo fixed in the commit message, only this patch could be > cherry-picked and merge and fix the typo at the merge time? I guess no > need to resend only this patch again with typo fixed and waste CI. I > don't have commit rights. Could you pls do that. > > thanks > Vinod This change LGTM. I will merge these changes with typo fix. Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> Regards, Santhosh > >> >> Regards, >> Santhosh >>> if (psr_sink_support(data->drm_fd, data->debugfs_fd, >>> PSR_MODE_1, NULL) || >>> psr_sink_support(data->drm_fd, data->debugfs_fd, >>> PSR_MODE_2, NULL) || >> > ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Xe.CI.BAT: success for updates to fbc tests 2026-03-26 7:25 [PATCH i-g-t 0/4] updates to fbc tests Vinod Govindapillai ` (3 preceding siblings ...) 2026-03-26 7:25 ` [PATCH i-g-t 4/4] tests/intel/kms_fbc_dirty_rect: check the plane size before fbc dirty rect tests Vinod Govindapillai @ 2026-03-26 13:43 ` Patchwork 2026-03-26 14:00 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2026-03-26 13:43 UTC (permalink / raw) To: Vinod Govindapillai; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1244 bytes --] == Series Details == Series: updates to fbc tests URL : https://patchwork.freedesktop.org/series/163896/ State : success == Summary == CI Bug Log - changes from XEIGT_8834_BAT -> XEIGTPW_14862_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14862_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_8834/bat-dg2-oem2/igt@xe_waitfence@engine.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14862/bat-dg2-oem2/igt@xe_waitfence@engine.html [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519 Build changes ------------- * IGT: IGT_8834 -> IGTPW_14862 IGTPW_14862: 14862 IGT_8834: 8834 xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14862/index.html [-- Attachment #2: Type: text/html, Size: 1806 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ i915.CI.BAT: success for updates to fbc tests 2026-03-26 7:25 [PATCH i-g-t 0/4] updates to fbc tests Vinod Govindapillai ` (4 preceding siblings ...) 2026-03-26 13:43 ` ✓ Xe.CI.BAT: success for updates to fbc tests Patchwork @ 2026-03-26 14:00 ` Patchwork 2026-03-27 3:45 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-27 8:48 ` ✗ i915.CI.Full: failure " Patchwork 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2026-03-26 14:00 UTC (permalink / raw) To: Vinod Govindapillai; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1387 bytes --] == Series Details == Series: updates to fbc tests URL : https://patchwork.freedesktop.org/series/163896/ State : success == Summary == CI Bug Log - changes from IGT_8834 -> IGTPW_14862 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): bat-dg2-13 bat-mtlp-9 Known issues ------------ Here are the changes found in IGTPW_14862 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-dg2-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/bat-dg2-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/bat-dg2-8/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8834 -> IGTPW_14862 CI-20190529: 20190529 CI_DRM_18222: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14862: 14862 IGT_8834: 8834 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/index.html [-- Attachment #2: Type: text/html, Size: 1973 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Xe.CI.FULL: success for updates to fbc tests 2026-03-26 7:25 [PATCH i-g-t 0/4] updates to fbc tests Vinod Govindapillai ` (5 preceding siblings ...) 2026-03-26 14:00 ` ✓ i915.CI.BAT: " Patchwork @ 2026-03-27 3:45 ` Patchwork 2026-03-27 8:48 ` ✗ i915.CI.Full: failure " Patchwork 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2026-03-27 3:45 UTC (permalink / raw) To: Vinod Govindapillai; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2454 bytes --] == Series Details == Series: updates to fbc tests URL : https://patchwork.freedesktop.org/series/163896/ State : success == Summary == CI Bug Log - changes from XEIGT_8834_FULL -> XEIGTPW_14862_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between XEIGT_8834_FULL and XEIGTPW_14862_FULL: ### New IGT tests (3) ### * igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early: - Statuses : 1 pass(s) - Exec time: [0.03] s * igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early: - Statuses : 1 pass(s) - Exec time: [0.03] s Known issues ------------ Here are the changes found in XEIGTPW_14862_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14862/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html #### Possible fixes #### * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][3] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8834/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14862/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html [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#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504 Build changes ------------- * IGT: IGT_8834 -> IGTPW_14862 IGTPW_14862: 14862 IGT_8834: 8834 xe-4793-2ccc868c40a9048ecf287b7bb002d73b5d25c7bf: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14862/index.html [-- Attachment #2: Type: text/html, Size: 3124 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ i915.CI.Full: failure for updates to fbc tests 2026-03-26 7:25 [PATCH i-g-t 0/4] updates to fbc tests Vinod Govindapillai ` (6 preceding siblings ...) 2026-03-27 3:45 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-03-27 8:48 ` Patchwork 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2026-03-27 8:48 UTC (permalink / raw) To: Govindapillai, Vinod; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 141126 bytes --] == Series Details == Series: updates to fbc tests URL : https://patchwork.freedesktop.org/series/163896/ State : failure == Summary == CI Bug Log - changes from IGT_8834_full -> IGTPW_14862_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14862_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14862_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_14862/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_14862_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-snb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-snb5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-snb6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html New tests --------- New tests have been introduced between IGT_8834_full and IGTPW_14862_full: ### New IGT tests (12) ### * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-1-pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.11] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-1-pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.13] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-2-pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.30] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-a-hdmi-a-2-pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.16] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-1-pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.44] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-1-pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-2-pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.37] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-b-hdmi-a-2-pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.09] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-1-pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.08] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-1-pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [1.10] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-2-pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.36] s * igt@kms_plane_multiple@2x-tiling-yf@pipe-c-hdmi-a-2-pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.15] s Known issues ------------ Here are the changes found in IGTPW_14862_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-16/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html * igt@fbdev@pan: - shard-snb: NOTRUN -> [FAIL][7] ([i915#15792]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-snb5/igt@fbdev@pan.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][8] ([i915#13356]) +3 other tests incomplete [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-6/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-2/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][16] ([i915#13356]) +2 other tests incomplete [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk5/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][17] ([i915#1099]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-snb4/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][21] ([i915#13390]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk8/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-tglu: [PASS][22] -> [DMESG-WARN][23] ([i915#13363]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-tglu-7/igt@gem_eio@kms.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#6334]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#6344]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-16/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +11 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-noreloc.html - shard-rkl: NOTRUN -> [SKIP][31] ([i915#14544] / [i915#3281]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-13/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +11 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4537]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-3/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4613] / [i915#7582]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [PASS][37] -> [DMESG-WARN][38] ([i915#4391] / [i915#4423]) +1 other test dmesg-warn [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg1-19/igt@gem_lmem_swapping@heavy-multi@lmem0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-14/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-3/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#4613]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#14544] / [i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk1/igt@gem_lmem_swapping@random-engines.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3282]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-13/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#284]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-8/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][46] ([i915#284]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][47] ([i915#284]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-19/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][48] ([i915#284]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-7/igt@gem_media_vme.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#284]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@gem_media_vme.html * igt@gem_mmap@big-bo: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4083]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-19/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +11 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +6 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +6 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@gem_mmap_wc@write-prefaulted.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-6/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#14544] / [i915#3282]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gem_pread@bench.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu-1: NOTRUN -> [WARN][58] ([i915#2658]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: [PASS][59] -> [SKIP][60] ([i915#4270]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@gem_pxp@create-regular-buffer.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-1.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4270]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-glk11: NOTRUN -> [SKIP][64] +153 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt@gem_softpin@noreloc-s3: - shard-glk11: NOTRUN -> [INCOMPLETE][67] ([i915#13809]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk11/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-6/igt@gem_tiled_pread_pwrite.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-16/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4079]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-4/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4879]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-12/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-10/igt@gem_userptr_blits@create-destroy-unsync.html - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3297]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282] / [i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3281] / [i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@gem_userptr_blits@relocations.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3281] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-3/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3281] / [i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-13/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3281] / [i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-6/igt@gem_userptr_blits@relocations.html * igt@gen9_exec_parse@batch-zero-length: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#14544] / [i915#2527]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-out: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@gen9_exec_parse@unaligned-jump.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-8/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@isolation@rcs0: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#14073]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-13/igt@i915_drm_fdinfo@isolation@rcs0.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#14118]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-19/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#6412]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#8399]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][95] ([i915#13790] / [i915#2681]) +1 other test warn [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@thresholds-idle: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#11681]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#6245]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-12/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#5723]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [PASS][99] -> [INCOMPLETE][100] ([i915#4817]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-glk11: NOTRUN -> [INCOMPLETE][101] ([i915#4817]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk11/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-5/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#5190]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#5190]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4212]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-7/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [PASS][107] -> [FAIL][108] ([i915#5956]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#5286]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#5286]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#14544] / [i915#5286]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#5286]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][114] +44 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-6/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#3638]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#3638]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][118] +14 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#6095]) +88 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#12313]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#6095]) +42 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#12313]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +160 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6095]) +44 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +39 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][128] +412 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#6095]) +29 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#12805]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#14098] / [i915#6095]) +60 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][132] ([i915#15582]) +1 other test incomplete [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#14544] / [i915#6095]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#6095]) +81 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#3742]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][137] +9 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-5/igt@kms_chamelium_color@degamma.html - shard-rkl: NOTRUN -> [SKIP][138] ([i915#14544]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#7828]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-6/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-12/igt@kms_chamelium_frames@dp-crc-single.html - shard-tglu: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-10/igt@kms_chamelium_frames@dp-crc-single.html - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-2/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +7 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#15330] / [i915#3116] / [i915#3299]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#15330] / [i915#3116]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#15330]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#15330]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#15330]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][150] ([i915#15330]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][151] ([i915#15330]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][152] ([i915#15330]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#14544] / [i915#15865]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#15865]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#15865]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-7/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#15865]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#15865]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent-hdcp14: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#15865]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#13049]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#13049]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][161] -> [FAIL][162] ([i915#13566]) +3 other tests fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: [PASS][163] -> [FAIL][164] ([i915#13566]) +1 other test fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3555]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#13049]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-14/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3555]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#13049]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#14544] / [i915#3555]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8814]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][173] ([i915#13566]) +1 other test fail [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][174] ([i915#13566]) +3 other tests fail [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#9809]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][176] +21 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#13046] / [i915#5354]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#4103]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#9723]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#13691]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-5/igt@kms_display_modes@extended-mode-basic.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#13691]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#13691]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-18/igt@kms_display_modes@extended-mode-basic.html - shard-tglu: NOTRUN -> [SKIP][183] ([i915#13691]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-2/igt@kms_display_modes@extended-mode-basic.html - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#13691]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#13749]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-mst.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#13749]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-8/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#13749]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#13748]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@kms_dsc@dsc-basic.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-9/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3840]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-12/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#2065] / [i915#4854]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#1839]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_feature_discovery@display-2x.html - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#1839]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#1839]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-18/igt@kms_feature_discovery@display-2x.html - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#1839]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-6/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#9337]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-4/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#9337]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#9337]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-13/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#9337]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-7/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9337]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#4881]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-1/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#9934]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-13/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#9934]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html - shard-tglu: NOTRUN -> [SKIP][207] ([i915#9934]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms-on-nop.html - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#9934]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#8381]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3637] / [i915#9934]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html - shard-glk: NOTRUN -> [INCOMPLETE][211] ([i915#12745] / [i915#4839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html - shard-snb: NOTRUN -> [TIMEOUT][212] ([i915#14033] / [i915#14350]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][213] ([i915#4839]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [TIMEOUT][214] ([i915#14033]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3637] / [i915#9934]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#9934]) +13 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a2: - shard-rkl: [PASS][217] -> [ABORT][218] ([i915#15132]) +1 other test abort [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a2.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#15643]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#15643]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#15643]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#14544] / [i915#15643]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#15643] / [i915#5190]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#15643]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/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][225] ([i915#15643]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#15643]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][228] +22 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#8708]) +8 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg1: [PASS][230] -> [DMESG-WARN][231] ([i915#4423]) +5 other tests dmesg-warn [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#15104]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#15104]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#15102]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#10433] / [i915#15102] / [i915#3458]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt: - shard-glk10: NOTRUN -> [SKIP][237] +99 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#8708]) +11 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#14544] / [i915#1825]) +4 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][240] +108 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#15102] / [i915#3458]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#15102] / [i915#3458]) +10 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#15102]) +8 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#15102] / [i915#3023]) +18 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8708]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#15102]) +17 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#5354]) +25 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#1825]) +48 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#1825]) +20 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#15102]) +11 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-6/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#12713]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html - shard-dg2: NOTRUN -> [SKIP][253] ([i915#12713]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][254] ([i915#13331] / [i915#14544]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#12713]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-19/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][256] ([i915#12713]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-dpms: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-12/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#15460]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#15460]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-18/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#15460]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-6/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#15460]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-3/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#15458]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#15458]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][267] ([i915#15458]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][268] ([i915#15458]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#15638] / [i915#15722]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#6301]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#6301]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][272] +22 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-14/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [INCOMPLETE][273] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#14712]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#14712]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-9/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#14544] / [i915#15709]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#15709]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#15709]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#15608]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#15608]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-10/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#15608]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15709]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#15709]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/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-mtlp: NOTRUN -> [SKIP][284] ([i915#15709]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#15709]) +3 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][286] ([i915#12178]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][287] ([i915#7862]) +1 other test fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][288] ([i915#10647] / [i915#12177]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/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][289] ([i915#10647]) +1 other test fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#8821]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8821]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#3555]) +7 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#13958]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][294] ([i915#13958]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-19/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#13958]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#14259]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#15887] / [i915#9809]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - shard-dg2: NOTRUN -> [SKIP][298] ([i915#13046] / [i915#5354] / [i915#9423]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#6953]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#15329]) +6 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#15329]) +4 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#15329] / [i915#3555]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#15329]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#14544] / [i915#5354]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9812]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-5/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#5354]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#9685]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#9685]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#9685]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-16/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [FAIL][310] ([i915#15752]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#15073]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: [PASS][312] -> [SKIP][313] ([i915#15073]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: NOTRUN -> [DMESG-WARN][314] ([i915#4423]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-16/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#15073]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][316] -> [SKIP][317] ([i915#15073]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][318] -> [SKIP][319] ([i915#15073]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@package-g7: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#15403]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-6/igt@kms_pm_rpm@package-g7.html - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#15403]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@kms_pm_rpm@package-g7.html - shard-dg2: NOTRUN -> [SKIP][322] ([i915#15403]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-8/igt@kms_pm_rpm@package-g7.html - shard-rkl: NOTRUN -> [SKIP][323] ([i915#14544] / [i915#15403]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_pm_rpm@package-g7.html - shard-dg1: NOTRUN -> [SKIP][324] ([i915#15403]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-19/igt@kms_pm_rpm@package-g7.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: NOTRUN -> [INCOMPLETE][325] ([i915#14419]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][326] ([i915#10553]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk5/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#6524]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#11520]) +4 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12316]) +4 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#11520]) +10 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#11520]) +5 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#9808]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-glk: NOTRUN -> [SKIP][333] ([i915#11520]) +8 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][334] ([i915#11520]) +5 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][335] ([i915#11520]) +4 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-snb4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#11520]) +5 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#11520]) +7 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][338] ([i915#11520]) +3 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#9683]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#9683]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-sprite-render: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +12 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-13/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-primary-page-flip@edp-1: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9688]) +15 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html * igt@kms_psr@fbc-psr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html * igt@kms_psr@pr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#9732]) +15 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_psr@pr-cursor-render.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][345] ([i915#9732]) +16 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-3/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-cursor-plane-move: - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#9732]) +6 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +27 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#9685]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][349] ([i915#15500]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk4/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#12755] / [i915#15867]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#5289]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#5289]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#5289]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#12755] / [i915#15867]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][355] ([i915#3555]) +2 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic@pipe-b-hdmi-a-1: - shard-snb: [PASS][356] -> [FAIL][357] ([i915#15106]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-snb6/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-snb7/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][358] ([i915#12276]) +1 other test incomplete [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk1/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#14544] / [i915#9906]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#15243] / [i915#3555]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-3/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#15243] / [i915#3555]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#11920]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_vrr@lobf.html - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#11920]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#9906]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][365] ([i915#9906]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-dg1: NOTRUN -> [SKIP][366] ([i915#9906]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu: NOTRUN -> [SKIP][367] ([i915#9906]) +2 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][368] ([i915#8808] / [i915#9906]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@mi-rpc: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#2434]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-5/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#2433]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][371] -> [FAIL][372] ([i915#4349]) +4 other tests fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@most-busy-check-all@bcs0: - shard-dg1: [PASS][373] -> [FAIL][374] ([i915#15520]) +1 other test fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg1-14/igt@perf_pmu@most-busy-check-all@bcs0.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-18/igt@perf_pmu@most-busy-check-all@bcs0.html - shard-mtlp: [PASS][375] -> [FAIL][376] ([i915#15520]) +1 other test fail [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-mtlp-7/igt@perf_pmu@most-busy-check-all@bcs0.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-3/igt@perf_pmu@most-busy-check-all@bcs0.html * igt@perf_pmu@rc6-suspend: - shard-rkl: [PASS][377] -> [INCOMPLETE][378] ([i915#13520]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-4/igt@perf_pmu@rc6-suspend.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@perf_pmu@rc6-suspend.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#14121]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-12/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#3708]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-8/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][381] ([i915#3708] / [i915#4077]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-1/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][382] ([i915#3708] / [i915#4077]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][383] ([i915#3708] / [i915#4077]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#3708]) +2 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg1: NOTRUN -> [SKIP][385] ([i915#3708]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#14544] / [i915#9917]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#9917]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][388] ([i915#12910]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-mtlp: NOTRUN -> [FAIL][389] ([i915#12910]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-rkl: NOTRUN -> [SKIP][390] ([i915#9917]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][391] ([i915#9917]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-14/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - shard-rkl: [ABORT][392] ([i915#15131]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-1/igt@gem_exec_suspend@basic-s3.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@gem_exec_suspend@basic-s3.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][394] ([i915#13356] / [i915#13820]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_selftest@live: - shard-mtlp: [DMESG-FAIL][396] ([i915#12061] / [i915#15560]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-mtlp-7/igt@i915_selftest@live.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][398] ([i915#12061]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-mtlp-7/igt@i915_selftest@live@workarounds.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@debugfs-reader: - shard-glk: [INCOMPLETE][400] ([i915#4817]) -> [PASS][401] +1 other test pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-glk3/igt@i915_suspend@debugfs-reader.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk2/igt@i915_suspend@debugfs-reader.html * igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-dg1: [DMESG-WARN][402] ([i915#4423]) -> [PASS][403] +1 other test pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg1-17/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-14/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][404] ([i915#13566]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [FAIL][406] ([i915#13566]) -> [PASS][407] +3 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2: - shard-rkl: [INCOMPLETE][408] ([i915#12358] / [i915#14152]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [TIMEOUT][410] ([i915#14033]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [FAIL][412] ([i915#15389] / [i915#6880]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-suspend.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-rkl: [INCOMPLETE][414] ([i915#10056]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_hdr@bpc-switch: - shard-rkl: [SKIP][416] ([i915#3555] / [i915#8228]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-2/igt@kms_hdr@bpc-switch.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_hdr@bpc-switch.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: [SKIP][418] ([i915#15073]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [FAIL][420] ([i915#15106]) -> [PASS][421] +2 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-mtlp-3/igt@kms_setmode@basic@pipe-b-edp-1.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-1: - shard-tglu: [FAIL][422] ([i915#15106]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-tglu-3/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-tglu-4/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [FAIL][424] ([i915#4349]) -> [PASS][425] +2 other tests pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html #### Warnings #### * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][426] ([i915#3555] / [i915#9323]) -> [SKIP][427] ([i915#14544] / [i915#3555] / [i915#9323]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-8/igt@gem_ccs@block-copy-compressed.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: [SKIP][428] ([i915#3281]) -> [SKIP][429] ([i915#14544] / [i915#3281]) +1 other test skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-4/igt@gem_exec_reloc@basic-scanout.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#3281]) -> [SKIP][431] ([i915#3281]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-active.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-rkl: [SKIP][432] ([i915#4613]) -> [SKIP][433] ([i915#14544] / [i915#4613]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-multi.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_madvise@dontneed-before-pwrite: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#3282]) -> [SKIP][435] ([i915#3282]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@gem_madvise@dontneed-before-pwrite.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_readwrite@beyond-eob: - shard-rkl: [SKIP][436] ([i915#3282]) -> [SKIP][437] ([i915#14544] / [i915#3282]) +1 other test skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-2/igt@gem_readwrite@beyond-eob.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gem_readwrite@beyond-eob.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#8411]) -> [SKIP][439] ([i915#8411]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][440] ([i915#8411]) -> [SKIP][441] ([i915#14544] / [i915#8411]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][442] ([i915#3297]) -> [SKIP][443] ([i915#14544] / [i915#3297]) +2 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#3297]) -> [SKIP][445] ([i915#3297]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: [SKIP][446] ([i915#2527]) -> [SKIP][447] ([i915#14544] / [i915#2527]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-7/igt@gen9_exec_parse@bb-secure.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-cmd: - shard-rkl: [SKIP][448] ([i915#14544] / [i915#2527]) -> [SKIP][449] ([i915#2527]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@gen9_exec_parse@bb-start-cmd.html * igt@i915_module_load@fault-injection: - shard-dg1: [ABORT][450] ([i915#11815] / [i915#15481]) -> [ABORT][451] ([i915#11815]) +1 other test abort [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg1-12/igt@i915_module_load@fault-injection.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@i915_module_load@fault-injection.html * igt@intel_hwmon@hwmon-write: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#7707]) -> [SKIP][453] ([i915#7707]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@intel_hwmon@hwmon-write.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][455] ([i915#1769] / [i915#3555]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-rkl: [SKIP][456] ([i915#5286]) -> [SKIP][457] ([i915#14544] / [i915#5286]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#5286]) -> [SKIP][459] ([i915#5286]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: [SKIP][460] -> [SKIP][461] ([i915#14544]) +3 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][462] ([i915#14544]) -> [SKIP][463] [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][464] ([i915#12313]) -> [SKIP][465] ([i915#12313] / [i915#14544]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][466] ([i915#6095]) -> [SKIP][467] ([i915#14544] / [i915#6095]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][468] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][469] ([i915#14098] / [i915#6095]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: - shard-rkl: [SKIP][470] ([i915#14098] / [i915#6095]) -> [SKIP][471] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-rkl: [SKIP][472] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][473] ([i915#11151] / [i915#7828]) +2 other tests skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg1: [SKIP][474] ([i915#11151] / [i915#7828]) -> [SKIP][475] ([i915#11151] / [i915#4423] / [i915#7828]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg1-16/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: [SKIP][476] ([i915#11151] / [i915#7828]) -> [SKIP][477] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#15330]) -> [SKIP][479] ([i915#15330]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][480] ([i915#15865]) -> [SKIP][481] ([i915#14544] / [i915#15865]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-5/igt@kms_content_protection@type1.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-rkl: [SKIP][482] ([i915#3555]) -> [SKIP][483] ([i915#14544] / [i915#3555]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-8/igt@kms_cursor_crc@cursor-random-max-size.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][484] ([i915#4103]) -> [SKIP][485] ([i915#14544] / [i915#4103]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: [SKIP][486] ([i915#3555] / [i915#3804]) -> [SKIP][487] ([i915#14544] / [i915#3555] / [i915#3804]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][488] ([i915#3804]) -> [SKIP][489] ([i915#14544] / [i915#3804]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][491] ([i915#3555] / [i915#3840]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][492] ([i915#3555] / [i915#3840]) -> [SKIP][493] ([i915#14544] / [i915#3555] / [i915#3840]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: [SKIP][494] ([i915#3840] / [i915#9053]) -> [SKIP][495] ([i915#14544] / [i915#3840] / [i915#9053]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][496] ([i915#3955]) -> [SKIP][497] ([i915#14544] / [i915#3955]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-5/igt@kms_fbcon_fbt@psr.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-rkl: [SKIP][498] ([i915#9934]) -> [SKIP][499] ([i915#14544] / [i915#9934]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: [INCOMPLETE][500] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][501] ([i915#12745] / [i915#4839]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-glk3/igt@kms_flip@2x-flip-vs-suspend.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk4/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][502] ([i915#4839] / [i915#6113]) -> [INCOMPLETE][503] ([i915#4839]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-glk3/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk4/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][504] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][505] ([i915#12745] / [i915#4839] / [i915#6113]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#15643]) -> [SKIP][507] ([i915#15643]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-rkl: [SKIP][508] ([i915#1825]) -> [SKIP][509] ([i915#14544] / [i915#1825]) +4 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#1825]) -> [SKIP][511] ([i915#1825]) +7 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][512] ([i915#15102]) -> [SKIP][513] ([i915#14544] / [i915#15102]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#15102]) -> [SKIP][515] ([i915#15102]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen: - shard-rkl: [SKIP][516] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][517] ([i915#15102] / [i915#3023]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][518] ([i915#15102] / [i915#3458]) -> [SKIP][519] ([i915#10433] / [i915#15102] / [i915#3458]) +4 other tests skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: [SKIP][520] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][521] ([i915#15102] / [i915#3458]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-slowdraw.html - shard-dg1: [SKIP][522] ([i915#15102] / [i915#3458]) -> [SKIP][523] ([i915#15102] / [i915#3458] / [i915#4423]) +1 other test skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-slowdraw.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: [SKIP][524] ([i915#15102] / [i915#3023]) -> [SKIP][525] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-suspend.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][526] ([i915#6301]) -> [SKIP][527] ([i915#14544] / [i915#6301]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-8/igt@kms_panel_fitting@legacy.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#14712]) -> [SKIP][529] ([i915#14712]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-rkl: [SKIP][530] ([i915#14544] / [i915#15709]) -> [SKIP][531] ([i915#15709]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][532] ([i915#15709]) -> [SKIP][533] ([i915#14544] / [i915#15709]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: [SKIP][534] ([i915#3828]) -> [SKIP][535] ([i915#14544] / [i915#3828]) +1 other test skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-5/igt@kms_pm_dc@dc5-retention-flops.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][536] ([i915#15739]) -> [SKIP][537] ([i915#14544] / [i915#15739]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-rkl: [SKIP][538] ([i915#11520] / [i915#14544]) -> [SKIP][539] ([i915#11520]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-4/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][540] ([i915#11520]) -> [SKIP][541] ([i915#11520] / [i915#14544]) +2 other tests skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-cursor-mmap-gtt: - shard-rkl: [SKIP][542] ([i915#1072] / [i915#9732]) -> [SKIP][543] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-7/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html * igt@kms_psr@pr-sprite-blt: - shard-dg1: [SKIP][544] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][545] ([i915#1072] / [i915#9732]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-dg1-17/igt@kms_psr@pr-sprite-blt.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-dg1-19/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: [SKIP][546] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][547] ([i915#1072] / [i915#9732]) +4 other tests skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-8/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][548] ([i915#2436]) -> [SKIP][549] ([i915#14544] / [i915#2436]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][550] ([i915#2434]) -> [SKIP][551] ([i915#14544] / [i915#2434]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-5/igt@perf@mi-rpc.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-6/igt@perf@mi-rpc.html * igt@perf_pmu@module-unload: - shard-mtlp: [ABORT][552] ([i915#15778]) -> [INCOMPLETE][553] ([i915#13520]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-mtlp-6/igt@perf_pmu@module-unload.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-mtlp-1/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#8516]) -> [SKIP][555] ([i915#8516]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-read: - shard-rkl: [SKIP][556] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][557] ([i915#3291] / [i915#3708]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8834/shard-rkl-6/igt@prime_vgem@basic-read.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/shard-rkl-5/igt@prime_vgem@basic-read.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [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#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [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#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [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#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#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15887 [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#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [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#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [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#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [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#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#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [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#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [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_8834 -> IGTPW_14862 CI-20190529: 20190529 CI_DRM_18222: 2ccc868c40a9048ecf287b7bb002d73b5d25c7bf @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14862: 14862 IGT_8834: 8834 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14862/index.html [-- Attachment #2: Type: text/html, Size: 190434 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2026-04-10 14:14 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-26 7:25 [PATCH i-g-t 0/4] updates to fbc tests Vinod Govindapillai 2026-03-26 7:25 ` [PATCH i-g-t 1/4] tests/intel/kms_frontbuffer_tracking: update the outdated fbc status checks Vinod Govindapillai 2026-03-26 9:27 ` Jani Nikula 2026-03-26 22:45 ` Ville Syrjälä 2026-03-31 10:49 ` Govindapillai, Vinod 2026-04-10 14:14 ` Kamil Konieczny 2026-03-26 7:25 ` [PATCH i-g-t 2/4] lib/i915/fbc: extract intel_fbc_get_fbc_status() Vinod Govindapillai 2026-03-26 7:25 ` [PATCH i-g-t 3/4] tests/intel/kms_frontbuffer_tracking: use intel_fbc_get_fbc_status() Vinod Govindapillai 2026-03-26 7:25 ` [PATCH i-g-t 4/4] tests/intel/kms_fbc_dirty_rect: check the plane size before fbc dirty rect tests Vinod Govindapillai 2026-03-27 5:05 ` Reddy Guddati, Santhosh 2026-03-27 8:11 ` Govindapillai, Vinod 2026-03-31 7:22 ` Reddy Guddati, Santhosh 2026-03-26 13:43 ` ✓ Xe.CI.BAT: success for updates to fbc tests Patchwork 2026-03-26 14:00 ` ✓ i915.CI.BAT: " Patchwork 2026-03-27 3:45 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-27 8:48 ` ✗ 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