* [PATCH i-g-t 0/3] lib/kms: make for_each_crtc_with_single_output() independent of pipes
@ 2026-03-23 12:06 Jani Nikula
2026-03-23 12:06 ` [PATCH i-g-t 1/3] lib/kms: don't special case igt_get_single_output_for_crtc() implementation Jani Nikula
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Jani Nikula @ 2026-03-23 12:06 UTC (permalink / raw)
To: igt-dev; +Cc: jani.nikula, ville.syrjala
A slightly tricky series to make for_each_crtc_with_single_output()
independent of pipes, while retaining pipe order iteration on Intel
devices.
Jani Nikula (3):
lib/kms: don't special case igt_get_single_output_for_crtc()
implementation
lib/kms: refactor for_each_crtc_with_single_output() to avoid
igt_crtc_for_pipe()
lib/kms: use CRTC index for __igt_output_crtc_populate()
lib/igt_kms.c | 40 +++++++++++++++++++++++++++++++---------
lib/igt_kms.h | 23 ++++++++++++++---------
2 files changed, 45 insertions(+), 18 deletions(-)
--
2.47.3
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t 1/3] lib/kms: don't special case igt_get_single_output_for_crtc() implementation 2026-03-23 12:06 [PATCH i-g-t 0/3] lib/kms: make for_each_crtc_with_single_output() independent of pipes Jani Nikula @ 2026-03-23 12:06 ` Jani Nikula 2026-03-23 12:06 ` [PATCH i-g-t 2/3] lib/kms: refactor for_each_crtc_with_single_output() to avoid igt_crtc_for_pipe() Jani Nikula ` (5 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2026-03-23 12:06 UTC (permalink / raw) To: igt-dev; +Cc: jani.nikula, ville.syrjala igt_get_single_output_for_crtc() can be trivially implemented in a more generic way using for_each_crtc_with_single_output() instead of using __igt_pipe_populate_outputs() and its implementation details directly. Do so to make it all easier to understand, and to make refactoring for_each_crtc_with_single_output() and __igt_pipe_populate_outputs() easier. Arguably the iteration is slower, but the bulk of the work is done in __igt_pipe_populate_outputs() anyway, and we're talking about O(n) search where n is 16. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- lib/igt_kms.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 481b893fc025..b835584bef1e 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -3665,12 +3665,15 @@ igt_output_t **__igt_pipe_populate_outputs(igt_display_t *display, igt_output_t */ igt_output_t *igt_get_single_output_for_crtc(igt_crtc_t *crtc) { - igt_display_t *display = crtc->display; - igt_output_t *chosen_outputs[igt_display_n_crtcs(display)]; + igt_output_t *output; + igt_crtc_t *iter; - __igt_pipe_populate_outputs(display, chosen_outputs); + for_each_crtc_with_single_output(crtc->display, iter, output) { + if (iter == crtc) + return output; + } - return chosen_outputs[crtc->pipe]; + return NULL; } static igt_output_t *igt_crtc_get_output(igt_crtc_t *crtc) -- 2.47.3 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 2/3] lib/kms: refactor for_each_crtc_with_single_output() to avoid igt_crtc_for_pipe() 2026-03-23 12:06 [PATCH i-g-t 0/3] lib/kms: make for_each_crtc_with_single_output() independent of pipes Jani Nikula 2026-03-23 12:06 ` [PATCH i-g-t 1/3] lib/kms: don't special case igt_get_single_output_for_crtc() implementation Jani Nikula @ 2026-03-23 12:06 ` Jani Nikula 2026-03-23 12:06 ` [PATCH i-g-t 3/3] lib/kms: use CRTC index for __igt_output_crtc_populate() Jani Nikula ` (4 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2026-03-23 12:06 UTC (permalink / raw) To: igt-dev; +Cc: jani.nikula, ville.syrjala Using igt_crtc_for_pipe() in for_each_crtc_with_single_output() is problematic for further conversion from pipe to igt_crtc_t and CRTC index usage. In particular, if we return igt_display_n_crtcs() to mean the actual CRTC count for the device, and have a device with a pipe fused off in the middle, we'll end up with a buffer overflow. Add a new structure igt_output_crtc_t for holding the valid output/crtc pointer combos instead of assuming the index in an igt_output_t pointer array is the pipe. This doesn't fix everything yet, but is a step in the right direction. Plus makes the whole loop ever so slightly easier to understand. For valid combos, both the output and crtc should always be non-NULL, and for invalid combos, both of them should always be NULL. However, check for both in the loop for good measure. C macros being dumb, we have to rename the macro parameters to be able to use output and crtc as the structure members. Meh. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- lib/igt_kms.c | 12 +++++++----- lib/igt_kms.h | 23 ++++++++++++++--------- 2 files changed, 21 insertions(+), 14 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index b835584bef1e..42329ad0303c 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -3588,7 +3588,7 @@ bool output_is_internal_panel(igt_output_t *output) } } -igt_output_t **__igt_pipe_populate_outputs(igt_display_t *display, igt_output_t **chosen_outputs) +igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, igt_output_crtc_t *chosen_outputs) { unsigned int full_crtc_index_mask = 0, assigned_crtc_index_mask = 0; igt_output_t *output; @@ -3634,15 +3634,17 @@ igt_output_t **__igt_pipe_populate_outputs(igt_display_t *display, igt_output_t /* We found an unassigned CRTC, use it! */ found = true; assigned_crtc_index_mask |= 1 << crtc->crtc_index; - chosen_outputs[crtc->pipe] = output; - } else if (!chosen_outputs[crtc->pipe] || - output_is_internal_panel(chosen_outputs[crtc->pipe])) { + chosen_outputs[crtc->pipe].output = output; + chosen_outputs[crtc->pipe].crtc = crtc; + } else if (!chosen_outputs[crtc->pipe].output || + output_is_internal_panel(chosen_outputs[crtc->pipe].output)) { /* * Overwrite internal panel if not * assigned, external outputs are faster * to do modesets */ - chosen_outputs[crtc->pipe] = output; + chosen_outputs[crtc->pipe].output = output; + chosen_outputs[crtc->pipe].crtc = crtc; } } diff --git a/lib/igt_kms.h b/lib/igt_kms.h index d7cc22d6cd61..aceac18ce240 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -520,6 +520,11 @@ typedef struct { uint64_t values[IGT_NUM_CONNECTOR_PROPS]; } igt_output_t; +typedef struct { + igt_output_t *output; + igt_crtc_t *crtc; +} igt_output_crtc_t; + struct igt_display { int drm_fd; int log_shift; @@ -763,25 +768,25 @@ static inline bool igt_crtc_connector_valid(igt_crtc_t *crtc, igt_output_t *outp (output) + 1 : ((crtc)++, &(display)->outputs[0])) \ for_each_if ((crtc)->valid && igt_crtc_connector_valid((crtc), (output))) -igt_output_t **__igt_pipe_populate_outputs(igt_display_t *display, - igt_output_t **chosen_outputs); +igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, + igt_output_crtc_t *chosen_outputs); /** * for_each_crtc_with_single_output: * @display: a pointer to an #igt_display_t structure - * @crtc: The CRTC for which this @crtc / @output combination is valid. - * @output: The output for which this @crtc / @output combination is valid. + * @_crtc: The CRTC for which this @_crtc / @_output combination is valid. + * @_output: The output for which this @_crtc / @_output combination is valid. * * This loop is called over all CRTCs, and will try to find a compatible output * for each CRTC. Unlike for_each_pipe_with_valid_output(), this function will * be called at most once for each pipe. */ -#define for_each_crtc_with_single_output(display, crtc, output) \ - for (igt_output_t *__outputs[igt_display_n_crtcs(display)], \ - **__output = __igt_pipe_populate_outputs((display), __outputs); \ +#define for_each_crtc_with_single_output(display, _crtc, _output) \ + for (igt_output_crtc_t __outputs[igt_display_n_crtcs(display)], \ + *__output = __igt_output_crtc_populate((display), __outputs); \ __output < &__outputs[igt_display_n_crtcs(display)]; __output++) \ - for_each_if (*__output && \ - ((crtc) = igt_crtc_for_pipe((display), (__output - __outputs)), (output) = *__output, 1)) + for_each_if (__output->output && __output->crtc && \ + ((_output) = __output->output, (_crtc) = __output->crtc, 1)) /** * for_each_valid_output_on_crtc: -- 2.47.3 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 3/3] lib/kms: use CRTC index for __igt_output_crtc_populate() 2026-03-23 12:06 [PATCH i-g-t 0/3] lib/kms: make for_each_crtc_with_single_output() independent of pipes Jani Nikula 2026-03-23 12:06 ` [PATCH i-g-t 1/3] lib/kms: don't special case igt_get_single_output_for_crtc() implementation Jani Nikula 2026-03-23 12:06 ` [PATCH i-g-t 2/3] lib/kms: refactor for_each_crtc_with_single_output() to avoid igt_crtc_for_pipe() Jani Nikula @ 2026-03-23 12:06 ` Jani Nikula 2026-03-26 11:36 ` Ville Syrjälä 2026-03-23 16:38 ` ✓ Xe.CI.BAT: success for lib/kms: make for_each_crtc_with_single_output() independent of pipes Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 10+ messages in thread From: Jani Nikula @ 2026-03-23 12:06 UTC (permalink / raw) To: igt-dev; +Cc: jani.nikula, ville.syrjala Fill the valid output/crtc combos in __igt_output_crtc_populate() using CRTC index instead of pipe. This avoids buffer overruns if we reduce igt_display_n_crtcs() to the actual number of CRTCs on the device. To keep the for_each_crtc_with_single_output() iteration in pipe order on Intel devices, sort the resulting array in a separate step. Presumably the performance impact of qsort() on an array of at most 16 elements is neglible. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- lib/igt_kms.c | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 42329ad0303c..b92bb16aaf9c 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -3588,6 +3588,18 @@ bool output_is_internal_panel(igt_output_t *output) } } +static int output_crtc_pipe_compare(const void *_a, const void *_b) +{ + const igt_output_crtc_t *a = _a, *b = _b; + + /* pipe order for valid output/crtc combos */ + if (a->crtc && b->crtc) + return a->crtc->pipe - b->crtc->pipe; + + /* valid combos before empty elements */ + return !b->crtc - !a->crtc; +} + igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, igt_output_crtc_t *chosen_outputs) { unsigned int full_crtc_index_mask = 0, assigned_crtc_index_mask = 0; @@ -3634,17 +3646,17 @@ igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, igt_output /* We found an unassigned CRTC, use it! */ found = true; assigned_crtc_index_mask |= 1 << crtc->crtc_index; - chosen_outputs[crtc->pipe].output = output; - chosen_outputs[crtc->pipe].crtc = crtc; - } else if (!chosen_outputs[crtc->pipe].output || - output_is_internal_panel(chosen_outputs[crtc->pipe].output)) { + chosen_outputs[crtc->crtc_index].output = output; + chosen_outputs[crtc->crtc_index].crtc = crtc; + } else if (!chosen_outputs[crtc->crtc_index].output || + output_is_internal_panel(chosen_outputs[crtc->crtc_index].output)) { /* * Overwrite internal panel if not * assigned, external outputs are faster * to do modesets */ - chosen_outputs[crtc->pipe].output = output; - chosen_outputs[crtc->pipe].crtc = crtc; + chosen_outputs[crtc->crtc_index].output = output; + chosen_outputs[crtc->crtc_index].crtc = crtc; } } @@ -3654,6 +3666,11 @@ igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, igt_output } } + /* For Intel, sort the output/crtc combos in pipe order */ + if (is_intel_device(display->drm_fd)) + qsort(chosen_outputs, igt_display_n_crtcs(display), + sizeof(*chosen_outputs), output_crtc_pipe_compare); + return chosen_outputs; } -- 2.47.3 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 3/3] lib/kms: use CRTC index for __igt_output_crtc_populate() 2026-03-23 12:06 ` [PATCH i-g-t 3/3] lib/kms: use CRTC index for __igt_output_crtc_populate() Jani Nikula @ 2026-03-26 11:36 ` Ville Syrjälä 2026-03-26 12:36 ` Jani Nikula 0 siblings, 1 reply; 10+ messages in thread From: Ville Syrjälä @ 2026-03-26 11:36 UTC (permalink / raw) To: Jani Nikula; +Cc: igt-dev On Mon, Mar 23, 2026 at 02:06:26PM +0200, Jani Nikula wrote: > Fill the valid output/crtc combos in __igt_output_crtc_populate() using > CRTC index instead of pipe. This avoids buffer overruns if we reduce > igt_display_n_crtcs() to the actual number of CRTCs on the device. > > To keep the for_each_crtc_with_single_output() iteration in pipe order > on Intel devices, sort the resulting array in a separate > step. Presumably the performance impact of qsort() on an array of at > most 16 elements is neglible. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > lib/igt_kms.c | 29 +++++++++++++++++++++++------ > 1 file changed, 23 insertions(+), 6 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 42329ad0303c..b92bb16aaf9c 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -3588,6 +3588,18 @@ bool output_is_internal_panel(igt_output_t *output) > } > } > > +static int output_crtc_pipe_compare(const void *_a, const void *_b) > +{ > + const igt_output_crtc_t *a = _a, *b = _b; > + > + /* pipe order for valid output/crtc combos */ > + if (a->crtc && b->crtc) > + return a->crtc->pipe - b->crtc->pipe; > + > + /* valid combos before empty elements */ > + return !b->crtc - !a->crtc; > +} > + > igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, igt_output_crtc_t *chosen_outputs) > { > unsigned int full_crtc_index_mask = 0, assigned_crtc_index_mask = 0; > @@ -3634,17 +3646,17 @@ igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, igt_output > /* We found an unassigned CRTC, use it! */ > found = true; > assigned_crtc_index_mask |= 1 << crtc->crtc_index; > - chosen_outputs[crtc->pipe].output = output; > - chosen_outputs[crtc->pipe].crtc = crtc; > - } else if (!chosen_outputs[crtc->pipe].output || > - output_is_internal_panel(chosen_outputs[crtc->pipe].output)) { > + chosen_outputs[crtc->crtc_index].output = output; > + chosen_outputs[crtc->crtc_index].crtc = crtc; > + } else if (!chosen_outputs[crtc->crtc_index].output || > + output_is_internal_panel(chosen_outputs[crtc->crtc_index].output)) { > /* > * Overwrite internal panel if not > * assigned, external outputs are faster > * to do modesets > */ > - chosen_outputs[crtc->pipe].output = output; > - chosen_outputs[crtc->pipe].crtc = crtc; > + chosen_outputs[crtc->crtc_index].output = output; > + chosen_outputs[crtc->crtc_index].crtc = crtc; > } > } > > @@ -3654,6 +3666,11 @@ igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, igt_output > } > } > > + /* For Intel, sort the output/crtc combos in pipe order */ > + if (is_intel_device(display->drm_fd)) > + qsort(chosen_outputs, igt_display_n_crtcs(display), > + sizeof(*chosen_outputs), output_crtc_pipe_compare); Maybe one day we can drop this sorting entirely. But that needs some testing, so this seems good for the moment. Didn't spot anything bad, so for the series Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > + > return chosen_outputs; > } > > -- > 2.47.3 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 3/3] lib/kms: use CRTC index for __igt_output_crtc_populate() 2026-03-26 11:36 ` Ville Syrjälä @ 2026-03-26 12:36 ` Jani Nikula 0 siblings, 0 replies; 10+ messages in thread From: Jani Nikula @ 2026-03-26 12:36 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev On Thu, 26 Mar 2026, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote: > On Mon, Mar 23, 2026 at 02:06:26PM +0200, Jani Nikula wrote: >> Fill the valid output/crtc combos in __igt_output_crtc_populate() using >> CRTC index instead of pipe. This avoids buffer overruns if we reduce >> igt_display_n_crtcs() to the actual number of CRTCs on the device. >> >> To keep the for_each_crtc_with_single_output() iteration in pipe order >> on Intel devices, sort the resulting array in a separate >> step. Presumably the performance impact of qsort() on an array of at >> most 16 elements is neglible. >> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> >> --- >> lib/igt_kms.c | 29 +++++++++++++++++++++++------ >> 1 file changed, 23 insertions(+), 6 deletions(-) >> >> diff --git a/lib/igt_kms.c b/lib/igt_kms.c >> index 42329ad0303c..b92bb16aaf9c 100644 >> --- a/lib/igt_kms.c >> +++ b/lib/igt_kms.c >> @@ -3588,6 +3588,18 @@ bool output_is_internal_panel(igt_output_t *output) >> } >> } >> >> +static int output_crtc_pipe_compare(const void *_a, const void *_b) >> +{ >> + const igt_output_crtc_t *a = _a, *b = _b; >> + >> + /* pipe order for valid output/crtc combos */ >> + if (a->crtc && b->crtc) >> + return a->crtc->pipe - b->crtc->pipe; >> + >> + /* valid combos before empty elements */ >> + return !b->crtc - !a->crtc; >> +} >> + >> igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, igt_output_crtc_t *chosen_outputs) >> { >> unsigned int full_crtc_index_mask = 0, assigned_crtc_index_mask = 0; >> @@ -3634,17 +3646,17 @@ igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, igt_output >> /* We found an unassigned CRTC, use it! */ >> found = true; >> assigned_crtc_index_mask |= 1 << crtc->crtc_index; >> - chosen_outputs[crtc->pipe].output = output; >> - chosen_outputs[crtc->pipe].crtc = crtc; >> - } else if (!chosen_outputs[crtc->pipe].output || >> - output_is_internal_panel(chosen_outputs[crtc->pipe].output)) { >> + chosen_outputs[crtc->crtc_index].output = output; >> + chosen_outputs[crtc->crtc_index].crtc = crtc; >> + } else if (!chosen_outputs[crtc->crtc_index].output || >> + output_is_internal_panel(chosen_outputs[crtc->crtc_index].output)) { >> /* >> * Overwrite internal panel if not >> * assigned, external outputs are faster >> * to do modesets >> */ >> - chosen_outputs[crtc->pipe].output = output; >> - chosen_outputs[crtc->pipe].crtc = crtc; >> + chosen_outputs[crtc->crtc_index].output = output; >> + chosen_outputs[crtc->crtc_index].crtc = crtc; >> } >> } >> >> @@ -3654,6 +3666,11 @@ igt_output_crtc_t *__igt_output_crtc_populate(igt_display_t *display, igt_output >> } >> } >> >> + /* For Intel, sort the output/crtc combos in pipe order */ >> + if (is_intel_device(display->drm_fd)) >> + qsort(chosen_outputs, igt_display_n_crtcs(display), >> + sizeof(*chosen_outputs), output_crtc_pipe_compare); > > Maybe one day we can drop this sorting entirely. But that needs some > testing, so this seems good for the moment. Yeah, maybe we'll eventually want to switch to CRTC order iteration in for_each_crtc() too, but I just don't want to open that can of worms here yet. > Didn't spot anything bad, so for the series > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Thanks, pushed. BR, Jani. > >> + >> return chosen_outputs; >> } >> >> -- >> 2.47.3 -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for lib/kms: make for_each_crtc_with_single_output() independent of pipes 2026-03-23 12:06 [PATCH i-g-t 0/3] lib/kms: make for_each_crtc_with_single_output() independent of pipes Jani Nikula ` (2 preceding siblings ...) 2026-03-23 12:06 ` [PATCH i-g-t 3/3] lib/kms: use CRTC index for __igt_output_crtc_populate() Jani Nikula @ 2026-03-23 16:38 ` Patchwork 2026-03-23 16:54 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-23 16:38 UTC (permalink / raw) To: Jani Nikula; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2247 bytes --] == Series Details == Series: lib/kms: make for_each_crtc_with_single_output() independent of pipes URL : https://patchwork.freedesktop.org/series/163695/ State : success == Summary == CI Bug Log - changes from XEIGT_8819_BAT -> XEIGTPW_14835_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14835_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_waitfence@abstime: - bat-dg2-oem2: [TIMEOUT][1] ([Intel XE#6506]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-dg2-oem2/igt@xe_waitfence@abstime.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/bat-dg2-oem2/igt@xe_waitfence@abstime.html * igt@xe_waitfence@reltime: - bat-bmg-2: [FAIL][3] ([Intel XE#6520]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-bmg-2/igt@xe_waitfence@reltime.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/bat-bmg-2/igt@xe_waitfence@reltime.html - bat-dg2-oem2: [FAIL][5] ([Intel XE#6520]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-dg2-oem2/igt@xe_waitfence@reltime.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/bat-dg2-oem2/igt@xe_waitfence@reltime.html [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506 [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520 Build changes ------------- * IGT: IGT_8819 -> IGTPW_14835 * Linux: xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 -> xe-4763-ad0e76efae0da3432314b19f2d56c93149fba7e8 IGTPW_14835: cb142a14b79e1740cae45cad1f17ae97a7a18267 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8819: 8819 xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 xe-4763-ad0e76efae0da3432314b19f2d56c93149fba7e8: ad0e76efae0da3432314b19f2d56c93149fba7e8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/index.html [-- Attachment #2: Type: text/html, Size: 2934 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for lib/kms: make for_each_crtc_with_single_output() independent of pipes 2026-03-23 12:06 [PATCH i-g-t 0/3] lib/kms: make for_each_crtc_with_single_output() independent of pipes Jani Nikula ` (3 preceding siblings ...) 2026-03-23 16:38 ` ✓ Xe.CI.BAT: success for lib/kms: make for_each_crtc_with_single_output() independent of pipes Patchwork @ 2026-03-23 16:54 ` Patchwork 2026-03-23 23:39 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-24 1:24 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-23 16:54 UTC (permalink / raw) To: Jani Nikula; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1706 bytes --] == Series Details == Series: lib/kms: make for_each_crtc_with_single_output() independent of pipes URL : https://patchwork.freedesktop.org/series/163695/ State : success == Summary == CI Bug Log - changes from IGT_8819 -> IGTPW_14835 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14835 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-6: [DMESG-FAIL][1] ([i915#12061]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/bat-arls-6/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8819 -> IGTPW_14835 * Linux: CI_DRM_18191 -> CI_DRM_18192 CI-20190529: 20190529 CI_DRM_18191: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18192: ad0e76efae0da3432314b19f2d56c93149fba7e8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14835: cb142a14b79e1740cae45cad1f17ae97a7a18267 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8819: 8819 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/index.html [-- Attachment #2: Type: text/html, Size: 2306 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for lib/kms: make for_each_crtc_with_single_output() independent of pipes 2026-03-23 12:06 [PATCH i-g-t 0/3] lib/kms: make for_each_crtc_with_single_output() independent of pipes Jani Nikula ` (4 preceding siblings ...) 2026-03-23 16:54 ` ✓ i915.CI.BAT: " Patchwork @ 2026-03-23 23:39 ` Patchwork 2026-03-24 1:24 ` ✗ i915.CI.Full: failure " Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-23 23:39 UTC (permalink / raw) To: Jani Nikula; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 45937 bytes --] == Series Details == Series: lib/kms: make for_each_crtc_with_single_output() independent of pipes URL : https://patchwork.freedesktop.org/series/163695/ State : success == Summary == CI Bug Log - changes from XEIGT_8819_FULL -> XEIGTPW_14835_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14835_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] ([Intel XE#5643]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-9/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-2/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-10/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#3432]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2652]) +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2325] / [Intel XE#7358]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_content_protection@atomic@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@kms_content_protection@atomic@pipe-a-dp-2.html * igt@kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#7642]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-10/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2291]) +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#2291] / [Intel XE#7343]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#7571]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_draw_crc@draw-method-render: - shard-bmg: NOTRUN -> [ABORT][22] ([Intel XE#5545]) +1 other test abort [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-2/igt@kms_draw_crc@draw-method-render.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2244]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2316]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][26] -> [FAIL][27] ([Intel XE#301]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#301] / [Intel XE#3149]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7179]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2311]) +9 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#4141]) +6 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2312]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7061] / [Intel XE#7356]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2313]) +15 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2350] / [Intel XE#7503]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#7308]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-10/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#1503]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#7086]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7283]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#4596]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#7340]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#1489]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-2/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#2414]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#1435]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_sharpness_filter@invalid-filter-with-plane: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6503]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-10/igt@kms_sharpness_filter@invalid-filter-with-plane.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][55] -> [FAIL][56] ([Intel XE#4459]) +1 other test fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#2142]) +1 other test fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6599]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@xe_compute@ccs-mode-basic.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#6321]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-multi-queue-cm: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7140]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-cm.html * igt@xe_exec_basic@multigpu-once-null-defer-bind: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-defer-bind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7136]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#6874]) +15 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html * igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7636]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7138]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html * igt@xe_multigpu_svm@mgpu-migration-basic: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#6964]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@xe_multigpu_svm@mgpu-migration-basic.html * igt@xe_pm@d3cold-i2c: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#5694] / [Intel XE#7370]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-4/igt@xe_pm@d3cold-i2c.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pxp@pxp-stale-bo-exec-post-rpm: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-1/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#944]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#6569]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_sriov_flr@flr-twice.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html #### Possible fixes #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [FAIL][75] ([Intel XE#7445]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-10/igt@intel_hwmon@hwmon-write.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@intel_hwmon@hwmon-write.html * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p: - shard-bmg: [SKIP][77] ([Intel XE#7621]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][79] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: [SKIP][81] ([Intel XE#2291]) -> [PASS][82] +4 other tests pass [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-10/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][83] ([Intel XE#2316]) -> [PASS][84] +7 other tests pass [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][85] ([Intel XE#301]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_plane_cursor@primary: - shard-bmg: [FAIL][87] -> [PASS][88] +1 other test pass [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_plane_cursor@primary.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-1/igt@kms_plane_cursor@primary.html * igt@kms_plane_multiple@2x-tiling-x: - shard-bmg: [SKIP][89] ([Intel XE#4596]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-x.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][91] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html * igt@xe_exec_system_allocator@once-mmap-mlock-nomemset: - shard-bmg: [DMESG-FAIL][93] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-mlock-nomemset.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@xe_exec_system_allocator@once-mmap-mlock-nomemset.html * igt@xe_exec_system_allocator@once-mmap-race-nomemset: - shard-bmg: [SKIP][95] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][96] +1 other test pass [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html * igt@xe_exec_system_allocator@process-many-new-busy: - shard-bmg: [SKIP][97] ([Intel XE#6703]) -> [PASS][98] +99 other tests pass [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@process-many-new-busy.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@xe_exec_system_allocator@process-many-new-busy.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early: - shard-bmg: [ABORT][99] -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html * igt@xe_module_load@many-reload: - shard-bmg: [DMESG-WARN][101] -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_module_load@many-reload.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@xe_module_load@many-reload.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [FAIL][103] ([Intel XE#6569]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-bmg: [FAIL][105] ([Intel XE#5937]) -> [PASS][106] +1 other test pass [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html #### Warnings #### * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-bmg: [SKIP][107] ([Intel XE#6703]) -> [SKIP][108] ([Intel XE#1124]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: [SKIP][109] ([Intel XE#6703]) -> [SKIP][110] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][111] ([Intel XE#6703]) -> [SKIP][112] ([Intel XE#2652]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][113] ([Intel XE#6703]) -> [SKIP][114] ([Intel XE#2887]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-bmg: [SKIP][115] ([Intel XE#6703]) -> [SKIP][116] ([Intel XE#2252]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_chamelium_frames@dp-frame-dump.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_content_protection@legacy: - shard-bmg: [SKIP][117] ([Intel XE#7642]) -> [FAIL][118] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_content_protection@legacy.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][119] ([Intel XE#6703]) -> [SKIP][120] ([Intel XE#7642]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_content_protection@srm.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: [FAIL][121] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][122] ([Intel XE#7642]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_content_protection@uevent-hdcp14.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][123] ([Intel XE#301]) -> [FAIL][124] ([Intel XE#301] / [Intel XE#3149]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][125] ([Intel XE#6703]) -> [SKIP][126] ([Intel XE#2311]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][127] ([Intel XE#2312]) -> [SKIP][128] ([Intel XE#2311]) +10 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][129] ([Intel XE#6703]) -> [SKIP][130] ([Intel XE#4141]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][131] ([Intel XE#4141]) -> [SKIP][132] ([Intel XE#2312]) +5 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][133] ([Intel XE#2312]) -> [SKIP][134] ([Intel XE#4141]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt: - shard-bmg: [SKIP][135] ([Intel XE#6703]) -> [SKIP][136] ([Intel XE#7061] / [Intel XE#7356]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][137] ([Intel XE#2311]) -> [SKIP][138] ([Intel XE#2312]) +16 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][139] ([Intel XE#2312]) -> [SKIP][140] ([Intel XE#2313]) +10 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][141] ([Intel XE#6703]) -> [SKIP][142] ([Intel XE#2312]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-bmg: [SKIP][143] ([Intel XE#6703]) -> [SKIP][144] ([Intel XE#2313]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][145] ([Intel XE#2313]) -> [SKIP][146] ([Intel XE#2312]) +15 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: [SKIP][147] ([Intel XE#6703]) -> [SKIP][148] ([Intel XE#7283]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][149] ([Intel XE#6703]) -> [SKIP][150] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-bmg: [SKIP][151] ([Intel XE#6703]) -> [SKIP][152] ([Intel XE#1489]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-bmg: [SKIP][153] ([Intel XE#6703]) -> [SKIP][154] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: [SKIP][155] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][156] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][157] ([Intel XE#6703]) -> [SKIP][158] ([Intel XE#1435]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_setmode@invalid-clone-single-crtc.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][159] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][160] ([Intel XE#2509] / [Intel XE#7437]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][161] ([Intel XE#6703]) -> [SKIP][162] ([Intel XE#1499]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-virtual.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][163] ([Intel XE#6703]) -> [SKIP][164] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-close: - shard-bmg: [SKIP][165] ([Intel XE#6703]) -> [SKIP][166] ([Intel XE#7636]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_eudebug@basic-close.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-1/igt@xe_eudebug@basic-close.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-bmg: [SKIP][167] ([Intel XE#6703]) -> [SKIP][168] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm: - shard-bmg: [SKIP][169] ([Intel XE#6703]) -> [SKIP][170] ([Intel XE#7136]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd: - shard-bmg: [SKIP][171] ([Intel XE#6703]) -> [SKIP][172] ([Intel XE#6874]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-6/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr: - shard-bmg: [SKIP][173] ([Intel XE#6703]) -> [SKIP][174] ([Intel XE#7138]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445 [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503 [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8819 -> IGTPW_14835 * Linux: xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 -> xe-4763-ad0e76efae0da3432314b19f2d56c93149fba7e8 IGTPW_14835: cb142a14b79e1740cae45cad1f17ae97a7a18267 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8819: 8819 xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 xe-4763-ad0e76efae0da3432314b19f2d56c93149fba7e8: ad0e76efae0da3432314b19f2d56c93149fba7e8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14835/index.html [-- Attachment #2: Type: text/html, Size: 54741 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for lib/kms: make for_each_crtc_with_single_output() independent of pipes 2026-03-23 12:06 [PATCH i-g-t 0/3] lib/kms: make for_each_crtc_with_single_output() independent of pipes Jani Nikula ` (5 preceding siblings ...) 2026-03-23 23:39 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-03-24 1:24 ` Patchwork 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-24 1:24 UTC (permalink / raw) To: Jani Nikula; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 143827 bytes --] == Series Details == Series: lib/kms: make for_each_crtc_with_single_output() independent of pipes URL : https://patchwork.freedesktop.org/series/163695/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18192_full -> IGTPW_14835_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14835_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14835_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_14835/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_14835_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_big@single: - shard-dg2: [PASS][1] -> [CRASH][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-3/igt@gem_exec_big@single.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-5/igt@gem_exec_big@single.html * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create: - shard-mtlp: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-4/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-5/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-snb: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-snb4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-snb5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_dp_aux_dev@basic}: - shard-tglu-1: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_dp_aux_dev@basic.html New tests --------- New tests have been introduced between CI_DRM_18192_full and IGTPW_14835_full: ### New IGT tests (36) ### * igt@i915_module_load@2x-flip-vs-expired-vblank: - Statuses : - Exec time: [None] s * igt@i915_module_load@bad-pitch-128: - Statuses : - Exec time: [None] s * igt@i915_module_load@blob-prop-validate: - Statuses : - Exec time: [None] s * igt@i915_module_load@crc-primary-basic-4-tiled-mtl-mc-ccs: - Statuses : - Exec time: [None] s * igt@i915_module_load@crc-primary-rotation-180-4-tiled-lnl-ccs: - Statuses : - Exec time: [None] s * igt@i915_module_load@create-size-update: - Statuses : - Exec time: [None] s * igt@i915_module_load@cursor-rapid-movement-128x42: - Statuses : - Exec time: [None] s * igt@i915_module_load@dpms-lpsp: - Statuses : - Exec time: [None] s * igt@i915_module_load@dsc-fallback: - Statuses : - Exec time: [None] s * igt@i915_module_load@etime-multi-wait-all-for-submit-available-unsubmitted-submitted: - Statuses : - Exec time: [None] s * igt@i915_module_load@export-basic: - Statuses : - Exec time: [None] s * igt@i915_module_load@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt: - Statuses : - Exec time: [None] s * igt@i915_module_load@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@i915_module_load@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - Statuses : - Exec time: [None] s * igt@i915_module_load@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - Statuses : - Exec time: [None] s * igt@i915_module_load@full-batch: - Statuses : - Exec time: [None] s * igt@i915_module_load@get-idle: - Statuses : - Exec time: [None] s * igt@i915_module_load@getfb2-into-addfb2: - Statuses : - Exec time: [None] s * igt@i915_module_load@legacy-setmode: - Statuses : - Exec time: [None] s * igt@i915_module_load@linear-max-hw-stride-32bpp-rotate-0-hflip: - Statuses : - Exec time: [None] s * igt@i915_module_load@multi-plane-atomic-lowres: - Statuses : - Exec time: [None] s * igt@i915_module_load@multi-wait-available-unsubmitted-signaled: - Statuses : - Exec time: [None] s * igt@i915_module_load@nb-await: - Statuses : - Exec time: [None] s * igt@i915_module_load@offset-16x16: - Statuses : - Exec time: [None] s * igt@i915_module_load@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - Statuses : - Exec time: [None] s * igt@i915_module_load@plain-flip-ts-check-interruptible: - Statuses : - Exec time: [None] s * igt@i915_module_load@plane-upscale-20x20-with-pixel-format: - Statuses : - Exec time: [None] s * igt@i915_module_load@psr-2p-primscrn-pri-shrfb-draw-render: - Statuses : - Exec time: [None] s * igt@i915_module_load@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@i915_module_load@secure-non-master: - Statuses : - Exec time: [None] s * igt@i915_module_load@single-wait-all-available-signaled: - Statuses : - Exec time: [None] s * igt@i915_module_load@submit-late-slice: - Statuses : - Exec time: [None] s * igt@i915_module_load@sysfs: - Statuses : - Exec time: [None] s * igt@i915_module_load@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - Statuses : - Exec time: [None] s * igt@i915_module_load@y-tiled-8bpp-rotate-180: - Statuses : - Exec time: [None] s * igt@i915_module_load@yf-tiled-64bpp-rotate-270: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_14835_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-17/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-8/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#11078]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg2: NOTRUN -> [ABORT][13] ([i915#5507]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@device_reset@unbind-reset-rebind.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#14544] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#13356]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-4/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-14/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][19] ([i915#12392] / [i915#13356]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#6335]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-snb6/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-8/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-19/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-7/igt@gem_exec_balancer@bonded-dual.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4812]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-6/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#4525]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-8/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][33] ([i915#6334]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@gem_exec_flush@basic-wb-rw-before-default.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +6 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#14544] / [i915#3281]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) +12 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +7 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +7 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-7/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3: - shard-glk: NOTRUN -> [INCOMPLETE][42] ([i915#13196] / [i915#13356]) +1 other test incomplete [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk5/igt@gem_exec_suspend@basic-s3.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-6/igt@gem_fenced_exec_thrash@too-many-fences.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-5/igt@gem_fenced_exec_thrash@too-many-fences.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-16/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613] / [i915#7582]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#12193]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4565]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][51] ([i915#4613]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk1/igt@gem_lmem_swapping@random-engines.html - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-16/igt@gem_mmap@bad-object.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-6/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@basic-write-cpu-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4077]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][56] -> [DMESG-WARN][57] ([i915#15478]) +1 other test dmesg-warn [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-8/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@gem_partial_pwrite_pread@write-snoop.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-14/igt@gem_partial_pwrite_pread@write-snoop.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3282]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu-1: NOTRUN -> [WARN][62] ([i915#2658]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-random: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@gem_pwrite@basic-random.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-snb: NOTRUN -> [SKIP][64] +91 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-snb4/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-4/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#14544] / [i915#8411]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4079]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#15656]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@gem_tiled_pread_basic@basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-1/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#14544] / [i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#3323]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3297]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-7/igt@gem_userptr_blits@unsync-overlap.html - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-5/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-6/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][80] ([i915#13356]) +2 other tests incomplete [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk3/igt@gem_workarounds@suspend-resume-context.html * igt@gen7_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#14544]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#2856]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@gen9_exec_parse@bb-start-param.html - shard-rkl: NOTRUN -> [SKIP][84] ([i915#2527]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@gen9_exec_parse@bb-start-param.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-18/igt@gen9_exec_parse@bb-start-param.html - shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-9/igt@gen9_exec_parse@bb-start-param.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-5/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#14544] / [i915#2527]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_drm_fdinfo@busy-hang@vcs0: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#14073]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@i915_drm_fdinfo@busy-hang@vcs0.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#14073]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-18/igt@i915_drm_fdinfo@busy-hang@vcs0.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#15479]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][92] ([i915#15342]) +1 other test abort [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][93] -> [DMESG-WARN][94] ([i915#14545]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-5/igt@i915_module_load@resize-bar.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-4/igt@i915_module_load@resize-bar.html - shard-rkl: NOTRUN -> [SKIP][95] ([i915#6412]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][96] ([i915#6412]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-8/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#8399]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#14498]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#11681]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#11681]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-17/igt@i915_pm_rps@thresholds-idle-park.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#11681]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#6245]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-6/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#6188]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_suspend@basic-s3-without-i915: - shard-glk: NOTRUN -> [INCOMPLETE][105] ([i915#4817]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk4/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-glk: [PASS][106] -> [INCOMPLETE][107] ([i915#4817]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-glk2/igt@i915_suspend@fence-restore-untiled.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk8/igt@i915_suspend@fence-restore-untiled.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#7707]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@intel_hwmon@hwmon-read.html - shard-tglu: NOTRUN -> [SKIP][109] ([i915#7707]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-3/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#5190]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#5190]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#12454] / [i915#12712]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk10: NOTRUN -> [INCOMPLETE][113] ([i915#12761]) +1 other test incomplete [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#9531]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][115] ([i915#1769]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [PASS][118] -> [FAIL][119] ([i915#5956]) +1 other test fail [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#5286]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html - shard-tglu: NOTRUN -> [SKIP][123] ([i915#5286]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#14544] / [i915#5286]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/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-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][125] -> [FAIL][126] ([i915#15733] / [i915#5138]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#3638]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3638]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-19/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#3828]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][130] +25 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#6095]) +218 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#6095]) +68 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#10434] / [i915#6095]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#6095]) +72 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][137] +322 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk9/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#12313]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#12313]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#12805]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#14544] / [i915#6095]) +6 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#6095]) +29 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#12805]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [SKIP][145] +91 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk11/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#14098] / [i915#6095]) +54 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-glk: NOTRUN -> [INCOMPLETE][147] ([i915#15582]) +1 other test incomplete [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#12313]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][149] +136 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6095]) +14 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#6095]) +34 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#12313] / [i915#14544]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#12313]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#12313]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#12313]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +74 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-10/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#13783]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][158] +5 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#14544] / [i915#7828]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +8 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +9 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +4 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-5/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +6 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#15330] / [i915#3116]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#15865]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_content_protection@srm.html - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#15865]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@suspend-resume: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#15865]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@kms_content_protection@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#15865]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-19/igt@kms_content_protection@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#15865]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-4/igt@kms_content_protection@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#15865]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-8/igt@kms_content_protection@suspend-resume.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu-1: NOTRUN -> [FAIL][173] ([i915#13566]) +1 other test fail [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8814]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][175] ([i915#13566]) +1 other test fail [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555]) +8 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#13049]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-rkl: [PASS][178] -> [FAIL][179] ([i915#13566]) +1 other test fail [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#13049]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8814]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#13049]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#13049]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#13049]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#13049]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#4103]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#13046] / [i915#5354]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#9809]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#4103]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#9833]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#9723]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#13691]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3804]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html - shard-tglu: NOTRUN -> [SKIP][195] ([i915#1769] / [i915#3555] / [i915#3804]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3804]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][197] ([i915#3804]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#13748]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#13707]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#13707]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#13707]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-19/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#13707]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-4/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#13707]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][205] ([i915#9878]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#2065] / [i915#4854]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-3/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#4854]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#1839]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#14544] / [i915#1839]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_feature_discovery@display-2x.html - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#1839]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#1839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@kms_feature_discovery@display-2x.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#1839]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-6/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#658]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3637] / [i915#9934]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#14544] / [i915#9934]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#8381]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][217] ([i915#8381]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8381]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][219] ([i915#12745] / [i915#4839]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][220] ([i915#4839]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#9934]) +10 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#9934]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#9934]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-18/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-tglu: NOTRUN -> [SKIP][224] ([i915#3637] / [i915#9934]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3637] / [i915#9934]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][226] ([i915#12745] / [i915#4839]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk10/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][227] ([i915#12745] / [i915#4839] / [i915#6113]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][228] ([i915#12745]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk10: NOTRUN -> [INCOMPLETE][229] ([i915#12745]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk10/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#15643]) +6 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#14544] / [i915#15643]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/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-tglu: NOTRUN -> [SKIP][232] ([i915#15643]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#15643]) +2 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][234] ([i915#15643]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][235] ([i915#15643]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#15643]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#15643] / [i915#5190]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#14544] / [i915#1825]) +5 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][240] +29 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][241] +59 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#1825]) +15 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#1825]) +43 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][244] ([i915#10056]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-glk11: NOTRUN -> [INCOMPLETE][245] ([i915#10056]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk11/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#14544] / [i915#15102]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#15102]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#15102]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#15102]) +17 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#10055]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#10055]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#9766]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#15102]) +6 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#15102] / [i915#3458]) +5 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#15102] / [i915#3023]) +22 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#15102]) +22 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#5354]) +17 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#8708]) +6 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#8708]) +7 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#8708]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#15102] / [i915#3458]) +6 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#12713]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-5/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#13688]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#15460]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#15460]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-3/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#15458]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#15638] / [i915#15722]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#6301]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-9/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] +26 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-16/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html - shard-mtlp: NOTRUN -> [SKIP][273] +5 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-4/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#14712]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#13705]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#15709]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#15709]) +4 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#15709]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#15709]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#15709]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#15608]) +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#15608]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][283] ([i915#13026]) +1 other test incomplete [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk8/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][284] ([i915#12178]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][285] ([i915#7862]) +1 other test fail [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][286] ([i915#10647] / [i915#12169]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][287] ([i915#10647]) +1 other test fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#3555]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-none: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#13958]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#13958]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#14259]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#6953] / [i915#9423]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#6953]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size.html - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#6953]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#15329]) +9 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#15329]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#15329] / [i915#3555] / [i915#6953]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#15329]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#5354]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-19/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#5354]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#9812]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#14544] / [i915#3828]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#14544] / [i915#9685]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][304] -> [SKIP][305] ([i915#15073]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][306] -> [SKIP][307] ([i915#15073]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@fences-dpms: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#4077]) +5 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-8/igt@kms_pm_rpm@fences-dpms.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#4077]) +5 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-19/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#15073]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#15073]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][312] -> [INCOMPLETE][313] ([i915#14419]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-8/igt@kms_pm_rpm@system-suspend-idle.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#6524]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#11520]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#11520]) +6 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#11520] / [i915#14544]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#9808]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#12316]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-glk11: NOTRUN -> [SKIP][320] ([i915#11520]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][321] ([i915#11520]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][322] ([i915#11520]) +9 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-snb: NOTRUN -> [SKIP][323] ([i915#11520]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#11520]) +5 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#11520]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#11520]) +3 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#9683]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#9683]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#9688]) +9 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-4/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +9 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-7/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#9732]) +13 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@kms_psr@psr-sprite-plane-onoff.html - shard-dg1: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#9732]) +10 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][334] ([i915#9732]) +17 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-3/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#1072] / [i915#9732]) +27 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#9685]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#12755] / [i915#15867]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-4/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#5289]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#12755] / [i915#15867] / [i915#5190]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][340] ([i915#5289]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#12755] / [i915#15867]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#3555]) +8 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#3555]) +9 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-16/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][344] ([i915#3555] / [i915#8809] / [i915#8823]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][345] ([i915#10959]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk4/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][346] ([i915#8623]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [PASS][347] -> [INCOMPLETE][348] ([i915#12276]) +1 other test incomplete [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][349] ([i915#12276]) +3 other tests incomplete [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#15243] / [i915#3555]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#9906]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-5/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][352] ([i915#14544] / [i915#9906]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][353] ([i915#9906]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-16/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#3555] / [i915#8808]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-1/igt@kms_vrr@flip-suspend.html - shard-dg2: NOTRUN -> [SKIP][355] ([i915#15243] / [i915#3555]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-1/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#11920]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][357] ([i915#11920]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][358] ([i915#11920]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-8/igt@kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#11920]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-1/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#9906]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#3555] / [i915#9906]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-2/igt@kms_vrr@negative-basic.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#8516]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][363] ([i915#8516]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@perf_pmu@rc6-all-gts.html - shard-dg1: NOTRUN -> [SKIP][364] ([i915#8516]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-rkl: [PASS][365] -> [INCOMPLETE][366] ([i915#13520]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@perf_pmu@rc6-suspend.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@perf_pmu@rc6-suspend.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][367] ([i915#3708] / [i915#4077]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#3291] / [i915#3708]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#3708]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][370] ([i915#12910]) +9 other tests fail [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-6/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#9917]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random: - shard-tglu-1: NOTRUN -> [FAIL][372] ([i915#12910]) +10 other tests fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-mtlp: NOTRUN -> [FAIL][373] ([i915#12910]) +8 other tests fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-2/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [INCOMPLETE][374] ([i915#13356]) -> [PASS][375] +2 other tests pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][376] ([i915#13390]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@gem_eio@in-flight-suspend.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_big@single: - shard-mtlp: [DMESG-FAIL][378] ([i915#15478]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-2/igt@gem_exec_big@single.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-8/igt@gem_exec_big@single.html * igt@gem_exec_fence@syncobj-timeline-invalid-flags: - shard-mtlp: [DMESG-WARN][380] ([i915#13562]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-7/igt@gem_exec_fence@syncobj-timeline-invalid-flags.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-2/igt@gem_exec_fence@syncobj-timeline-invalid-flags.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-glk: [INCOMPLETE][382] -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-glk4/igt@gem_exec_whisper@basic-contexts-forked-all.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk3/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [ABORT][384] ([i915#15131]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [INCOMPLETE][386] ([i915#4817]) -> [PASS][387] +1 other test pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg2: [FAIL][388] ([i915#5956]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][390] ([i915#15662]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [FAIL][392] ([i915#5956]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-tglu: [FAIL][394] ([i915#13566]) -> [PASS][395] +3 other tests pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-6/igt@kms_cursor_crc@cursor-random-64x21.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-10/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2: - shard-rkl: [FAIL][396] ([i915#13566]) -> [PASS][397] +3 other tests pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: [FAIL][398] ([i915#15389] / [i915#6880]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_hdmi_inject@inject-4k: - shard-dg1: [DMESG-WARN][400] ([i915#4423]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-14/igt@kms_hdmi_inject@inject-4k.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-17/igt@kms_hdmi_inject@inject-4k.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][402] ([i915#15073]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][404] ([i915#15073]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [FAIL][406] ([i915#4349]) -> [PASS][407] +7 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-dg2: [FAIL][408] ([i915#4349]) -> [PASS][409] +5 other tests pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@perf_pmu@render-node-busy-idle@vcs1.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-3/igt@perf_pmu@render-node-busy-idle@vcs1.html - shard-dg1: [FAIL][410] ([i915#4349]) -> [PASS][411] +3 other tests pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-16/igt@perf_pmu@render-node-busy-idle@vcs1.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-14/igt@perf_pmu@render-node-busy-idle@vcs1.html #### Warnings #### * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][412] ([i915#3555] / [i915#9323]) -> [SKIP][413] ([i915#14544] / [i915#3555] / [i915#9323]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: [SKIP][414] ([i915#7697]) -> [SKIP][415] ([i915#14544] / [i915#7697]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_exec_reloc@basic-wc-gtt-active: - shard-rkl: [SKIP][416] ([i915#3281]) -> [SKIP][417] ([i915#14544] / [i915#3281]) +3 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@gem_exec_reloc@basic-wc-gtt-active.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt-active.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: [SKIP][418] ([i915#14544] / [i915#3281]) -> [SKIP][419] ([i915#3281]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read-noreloc.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_lmem_swapping@massive-random: - shard-rkl: [SKIP][420] ([i915#14544] / [i915#4613]) -> [SKIP][421] ([i915#4613]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][422] ([i915#4613]) -> [SKIP][423] ([i915#14544] / [i915#4613]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@gem_lmem_swapping@verify-ccs.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: [SKIP][424] ([i915#3282]) -> [SKIP][425] ([i915#14544] / [i915#3282]) +3 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@gem_partial_pwrite_pread@reads.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][426] ([i915#3297] / [i915#3323]) -> [SKIP][427] ([i915#14544] / [i915#3297] / [i915#3323]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: [SKIP][428] ([i915#3297]) -> [SKIP][429] ([i915#14544] / [i915#3297]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@gem_userptr_blits@readonly-unsync.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: [SKIP][430] ([i915#2527]) -> [SKIP][431] ([i915#14544] / [i915#2527]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@fault-injection: - shard-mtlp: [ABORT][432] ([i915#15342] / [i915#15481]) -> [ABORT][433] ([i915#15481]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-mtlp-4/igt@i915_module_load@fault-injection.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-mtlp-5/igt@i915_module_load@fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: [SKIP][434] ([i915#6590]) -> [SKIP][435] ([i915#14544] / [i915#6590]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [INCOMPLETE][436] ([i915#4817]) -> [ABORT][437] ([i915#15140]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#5286]) -> [SKIP][439] ([i915#5286]) +1 other test skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-rkl: [SKIP][440] ([i915#5286]) -> [SKIP][441] ([i915#14544] / [i915#5286]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][442] ([i915#3638]) -> [SKIP][443] ([i915#14544] / [i915#3638]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][444] ([i915#14098] / [i915#6095]) -> [SKIP][445] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][446] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][447] ([i915#14098] / [i915#6095]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][448] ([i915#6095]) -> [SKIP][449] ([i915#14544] / [i915#6095]) +5 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: [INCOMPLETE][450] ([i915#15582]) -> [INCOMPLETE][451] ([i915#14694] / [i915#15582]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#3742]) -> [SKIP][453] ([i915#3742]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-rkl: [SKIP][454] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][455] ([i915#11151] / [i915#7828]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: [SKIP][456] ([i915#11151] / [i915#7828]) -> [SKIP][457] ([i915#11151] / [i915#14544] / [i915#7828]) +6 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: [SKIP][458] ([i915#15865]) -> [SKIP][459] ([i915#14544] / [i915#15865]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][460] ([i915#15330] / [i915#3116]) -> [SKIP][461] ([i915#14544] / [i915#15330] / [i915#3116]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][462] ([i915#15865]) -> [SKIP][463] ([i915#9433]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-17/igt@kms_content_protection@mei-interface.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: [SKIP][464] ([i915#13049] / [i915#14544]) -> [SKIP][465] ([i915#13049]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: [SKIP][466] ([i915#3555]) -> [SKIP][467] ([i915#14544] / [i915#3555]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: [SKIP][468] ([i915#13049]) -> [SKIP][469] ([i915#13049] / [i915#14544]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][470] -> [SKIP][471] ([i915#14544]) +6 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: [SKIP][472] ([i915#4103]) -> [SKIP][473] ([i915#14544] / [i915#4103]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][474] ([i915#13749] / [i915#14544]) -> [SKIP][475] ([i915#13749]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][476] ([i915#13707] / [i915#14544]) -> [SKIP][477] ([i915#13707]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][478] ([i915#3555] / [i915#3840]) -> [SKIP][479] ([i915#14544] / [i915#3555] / [i915#3840]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@kms_dsc@dsc-with-bpc.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][481] ([i915#3555] / [i915#3840]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][482] ([i915#3955]) -> [SKIP][483] ([i915#14544] / [i915#3955]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-8/igt@kms_fbcon_fbt@psr.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#1839]) -> [SKIP][485] ([i915#1839]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_feature_discovery@display-3x.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#9934]) -> [SKIP][487] ([i915#9934]) +3 other tests skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][488] ([i915#9934]) -> [SKIP][489] ([i915#14544] / [i915#9934]) +3 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: [SKIP][490] ([i915#15643]) -> [SKIP][491] ([i915#14544] / [i915#15643]) +4 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][492] ([i915#15102] / [i915#3458]) -> [SKIP][493] ([i915#10433] / [i915#15102] / [i915#3458]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-dg1: [SKIP][494] ([i915#4423]) -> [SKIP][495] [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-rkl: [SKIP][496] ([i915#14544] / [i915#15102]) -> [SKIP][497] ([i915#15102]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][498] ([i915#15102]) -> [SKIP][499] ([i915#14544] / [i915#15102]) +2 other tests skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][500] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][501] ([i915#15102] / [i915#3458]) +3 other tests skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][503] ([i915#15102] / [i915#3023]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][504] ([i915#15102] / [i915#3023]) -> [SKIP][505] ([i915#14544] / [i915#15102] / [i915#3023]) +11 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: [SKIP][506] ([i915#1825]) -> [SKIP][507] ([i915#14544] / [i915#1825]) +13 other tests skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt: - shard-rkl: [SKIP][508] ([i915#14544] / [i915#1825]) -> [SKIP][509] ([i915#1825]) +4 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: [SKIP][510] ([i915#12713]) -> [SKIP][511] ([i915#13331] / [i915#14544]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: [SKIP][512] ([i915#12713]) -> [SKIP][513] ([i915#1187] / [i915#12713]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-dg1-17/igt@kms_hdr@brightness-with-hdr.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: [SKIP][514] ([i915#13688]) -> [SKIP][515] ([i915#13688] / [i915#14544]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: [SKIP][516] ([i915#14544] / [i915#14712]) -> [SKIP][517] ([i915#14712]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][518] ([i915#14544] / [i915#15709]) -> [SKIP][519] ([i915#15709]) +1 other test skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-rkl: [SKIP][520] ([i915#15709]) -> [SKIP][521] ([i915#14544] / [i915#15709]) +3 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: [SKIP][522] ([i915#15329]) -> [SKIP][523] ([i915#14544] / [i915#15329]) +7 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][524] ([i915#5354]) -> [SKIP][525] ([i915#14544] / [i915#5354]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-8/igt@kms_pm_backlight@bad-brightness.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [SKIP][526] ([i915#15128]) -> [FAIL][527] ([i915#15752]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][528] ([i915#15739]) -> [SKIP][529] ([i915#15128]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][530] ([i915#15073]) -> [SKIP][531] ([i915#14544] / [i915#15073]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: [SKIP][532] ([i915#14544] / [i915#6524]) -> [SKIP][533] ([i915#6524]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][534] ([i915#11520] / [i915#14544]) -> [SKIP][535] ([i915#11520]) +1 other test skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][536] ([i915#11520]) -> [SKIP][537] ([i915#11520] / [i915#14544]) +2 other tests skip [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: [SKIP][538] ([i915#9683]) -> [SKIP][539] ([i915#14544] / [i915#9683]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-blt: - shard-rkl: [SKIP][540] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][541] ([i915#1072] / [i915#9732]) +1 other test skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-blt.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-3/igt@kms_psr@fbc-psr-cursor-blt.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: [SKIP][542] ([i915#1072] / [i915#9732]) -> [SKIP][543] ([i915#1072] / [i915#14544] / [i915#9732]) +12 other tests skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#5289]) -> [SKIP][545] ([i915#5289]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][546] ([i915#2435]) -> [SKIP][547] ([i915#14544] / [i915#2435]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@prime_vgem@basic-fence-read: - shard-rkl: [SKIP][548] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][549] ([i915#3291] / [i915#3708]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-6/igt@prime_vgem@basic-fence-read.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: [SKIP][550] ([i915#3708]) -> [SKIP][551] ([i915#14544] / [i915#3708]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-3/igt@prime_vgem@coherency-gtt.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: [SKIP][552] ([i915#9917]) -> [SKIP][553] ([i915#14544] / [i915#9917]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18192/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [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#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [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#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#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#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [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#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [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#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [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#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#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#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [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#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#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#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8819 -> IGTPW_14835 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18192: ad0e76efae0da3432314b19f2d56c93149fba7e8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14835: cb142a14b79e1740cae45cad1f17ae97a7a18267 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8819: 8819 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14835/index.html [-- Attachment #2: Type: text/html, Size: 191972 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-03-26 12:36 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-23 12:06 [PATCH i-g-t 0/3] lib/kms: make for_each_crtc_with_single_output() independent of pipes Jani Nikula 2026-03-23 12:06 ` [PATCH i-g-t 1/3] lib/kms: don't special case igt_get_single_output_for_crtc() implementation Jani Nikula 2026-03-23 12:06 ` [PATCH i-g-t 2/3] lib/kms: refactor for_each_crtc_with_single_output() to avoid igt_crtc_for_pipe() Jani Nikula 2026-03-23 12:06 ` [PATCH i-g-t 3/3] lib/kms: use CRTC index for __igt_output_crtc_populate() Jani Nikula 2026-03-26 11:36 ` Ville Syrjälä 2026-03-26 12:36 ` Jani Nikula 2026-03-23 16:38 ` ✓ Xe.CI.BAT: success for lib/kms: make for_each_crtc_with_single_output() independent of pipes Patchwork 2026-03-23 16:54 ` ✓ i915.CI.BAT: " Patchwork 2026-03-23 23:39 ` ✓ Xe.CI.FULL: " Patchwork 2026-03-24 1:24 ` ✗ 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