* [PATCH v3 0/2] tests/chamelium/audio: Fix resource leaks in audio tests
@ 2026-03-10 9:19 Mohammed Bilal
2026-03-10 9:19 ` [PATCH v3 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config Mohammed Bilal
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Mohammed Bilal @ 2026-03-10 9:19 UTC (permalink / raw)
To: igt-dev; +Cc: jeevan.b, kunal1.joshi, sebastian.brzezinka, Mohammed Bilal
This series fixes resource leaks in Chamelium audio tests.
It resolves a handle leak in the audio test loop when the audio
configuration check fails and the loop continues without cleanup.
It also ensures proper cleanup when assertion failures occur after
resources are acquired by routing error paths through a common
cleanup sequence.
v2:
-Refactor check condition (Sebastien)
v3:
-Update assert logic (Jeevan)
Mohammed Bilal (2):
tests/chamelium/audio: Fix ALSA handle leak on skipped audio config
tests/chamelium/audio: Fix resource leaks on assertion failure
tests/chamelium/kms_chamelium_audio.c | 55 ++++++++++++++++++---------
1 file changed, 38 insertions(+), 17 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH v3 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config 2026-03-10 9:19 [PATCH v3 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal @ 2026-03-10 9:19 ` Mohammed Bilal 2026-03-10 9:19 ` [PATCH v3 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure Mohammed Bilal ` (4 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Mohammed Bilal @ 2026-03-10 9:19 UTC (permalink / raw) To: igt-dev; +Cc: jeevan.b, kunal1.joshi, sebastian.brzezinka, Mohammed Bilal When the audio configuration check fails, the loop continues without closing previously opened ALSA handles. This leads to handle leaks across iterations and may eventually cause file descriptor exhaustion or configuration failures. Fix by ensuring the handles are closed before continuing. Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> Reviewed-by: Jeevan B <jeevan.b@intel.com> Reviewed-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> --- tests/chamelium/kms_chamelium_audio.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/chamelium/kms_chamelium_audio.c b/tests/chamelium/kms_chamelium_audio.c index df8d27c0c..2967e3c50 100644 --- a/tests/chamelium/kms_chamelium_audio.c +++ b/tests/chamelium/kms_chamelium_audio.c @@ -762,8 +762,10 @@ static void test_display_audio(chamelium_data_t *data, sampling_rate = test_sampling_rates[i]; if (!check_audio_configuration(alsa, format, channels, - sampling_rate)) + sampling_rate)) { + alsa_close_output(alsa); continue; + } run = true; -- 2.48.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v3 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure 2026-03-10 9:19 [PATCH v3 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal 2026-03-10 9:19 ` [PATCH v3 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config Mohammed Bilal @ 2026-03-10 9:19 ` Mohammed Bilal 2026-03-12 6:21 ` B, Jeevan 2026-03-12 10:48 ` Sebastian Brzezinka 2026-03-10 12:00 ` ✓ Xe.CI.BAT: success for tests/chamelium/audio: Fix resource leaks in audio tests (rev3) Patchwork ` (3 subsequent siblings) 5 siblings, 2 replies; 9+ messages in thread From: Mohammed Bilal @ 2026-03-10 9:19 UTC (permalink / raw) To: igt-dev; +Cc: jeevan.b, kunal1.joshi, sebastian.brzezinka, Mohammed Bilal Fatal assertions can bypass cleanup paths, causing resources to remain unreleased when failures occur during audio tests. Replace fatal assertions with non-fatal checks and route failures through a common cleanup path to ensure proper cleanup. v2: -Refactor check condition (Sebastien) v3: -Update assert logic (Jeevan) Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> --- tests/chamelium/kms_chamelium_audio.c | 51 ++++++++++++++++++--------- 1 file changed, 35 insertions(+), 16 deletions(-) diff --git a/tests/chamelium/kms_chamelium_audio.c b/tests/chamelium/kms_chamelium_audio.c index 2967e3c50..252a36274 100644 --- a/tests/chamelium/kms_chamelium_audio.c +++ b/tests/chamelium/kms_chamelium_audio.c @@ -389,11 +389,11 @@ static int audio_output_frequencies_callback(void *data, void *buffer, static bool test_audio_frequencies(struct audio_state *state) { int freq, step; - int32_t *recv, *buf; - double *channel; + int32_t *recv = NULL, *buf = NULL; + double *channel = NULL; size_t i, j, streak; - size_t recv_len, buf_len, buf_cap, channel_len; - bool success; + size_t recv_len = 0, buf_len, buf_cap, channel_len; + bool success = false; int capture_chan; state->signal = audio_signal_init(state->playback.channels, @@ -426,9 +426,12 @@ static bool test_audio_frequencies(struct audio_state *state) audio_state_start(state, "frequencies"); - igt_assert_f(state->capture.rate == state->playback.rate, - "Capture rate (%dHz) doesn't match playback rate (%dHz)\n", - state->capture.rate, state->playback.rate); + if (state->capture.rate != state->playback.rate) { + igt_critical("Capture rate (%dHz) doesn't match playback " + "rate (%dHz)\n", + state->capture.rate, state->playback.rate); + goto out; + } /* Needs to be a multiple of 128, because that's the number of samples * we get per channel each time we receive an audio page from the @@ -447,10 +450,6 @@ static bool test_audio_frequencies(struct audio_state *state) buf = malloc(sizeof(int32_t) * buf_cap); buf_len = 0; - recv = NULL; - recv_len = 0; - - success = false; streak = 0; while (!success && state->msec < AUDIO_TIMEOUT) { audio_state_receive(state, &recv, &recv_len); @@ -460,13 +459,21 @@ static bool test_audio_frequencies(struct audio_state *state) if (buf_len < buf_cap) continue; - igt_assert(buf_len == buf_cap); + if (buf_len > buf_cap) { + igt_critical("Buffer overflow: %zu > %zu\n", + buf_len, buf_cap); + goto out; + } igt_debug("Detecting audio signal, t=%d msec\n", state->msec); for (j = 0; j < state->playback.channels; j++) { capture_chan = state->channel_mapping[j]; - igt_assert(capture_chan >= 0); + if (capture_chan < 0) { + igt_critical("Invalid channel mapping for " + "channel %zu\n", j); + goto out; + } igt_debug("Processing channel %zu (captured as " "channel %d)\n", j, capture_chan); @@ -489,6 +496,7 @@ static bool test_audio_frequencies(struct audio_state *state) success = streak == MIN_STREAK * state->playback.channels; } +out: audio_state_stop(state, success); free(recv); @@ -587,6 +595,7 @@ static bool test_audio_flatline(struct audio_state *state) recv = NULL; recv_len = 0; amp_success = false; + align_success = false; streak = 0; while (!amp_success && state->msec < AUDIO_TIMEOUT) { audio_state_receive(state, &recv, &recv_len); @@ -595,7 +604,11 @@ static bool test_audio_flatline(struct audio_state *state) for (i = 0; i < state->playback.channels; i++) { capture_chan = state->channel_mapping[i]; - igt_assert(capture_chan >= 0); + if (capture_chan < 0) { + igt_critical("Invalid channel mapping for " + "channel %zu\n", i); + goto out; + } igt_debug("Processing channel %zu (captured as " "channel %d)\n", i, capture_chan); @@ -661,6 +674,7 @@ static bool test_audio_flatline(struct audio_state *state) } } +out: success = amp_success && align_success; audio_state_stop(state, success); @@ -776,13 +790,18 @@ static void test_display_audio(chamelium_data_t *data, audio_state_fini(&state); alsa_close_output(alsa); + + /* Fail early if any test fails */ + igt_assert_f(success, + "Audio test failed for format %s, " + "sampling rate %d Hz and %d channels\n", + snd_pcm_format_name(format), + sampling_rate, channels); } } /* Make sure we tested at least one frequency and format. */ igt_assert(run); - /* Make sure all runs were successful. */ - igt_assert(success); igt_remove_fb(data->drm_fd, &fb); -- 2.48.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [PATCH v3 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure 2026-03-10 9:19 ` [PATCH v3 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure Mohammed Bilal @ 2026-03-12 6:21 ` B, Jeevan 2026-03-12 10:48 ` Sebastian Brzezinka 1 sibling, 0 replies; 9+ messages in thread From: B, Jeevan @ 2026-03-12 6:21 UTC (permalink / raw) To: Bilal, Mohammed, igt-dev@lists.freedesktop.org Cc: Joshi, Kunal1, Brzezinka, Sebastian LGTM. Reviewed-by: Jeevan B <jeevan.b@intel.com> > -----Original Message----- > From: Bilal, Mohammed <mohammed.bilal@intel.com> > Sent: Tuesday, March 10, 2026 2:50 PM > To: igt-dev@lists.freedesktop.org > Cc: B, Jeevan <jeevan.b@intel.com>; Joshi, Kunal1 <kunal1.joshi@intel.com>; > Brzezinka, Sebastian <sebastian.brzezinka@intel.com>; Bilal, Mohammed > <mohammed.bilal@intel.com> > Subject: [PATCH v3 2/2] tests/chamelium/audio: Fix resource leaks on assertion > failure > > Fatal assertions can bypass cleanup paths, causing resources to remain > unreleased when failures occur during audio tests. > > Replace fatal assertions with non-fatal checks and route failures through a > common cleanup path to ensure proper cleanup. > > v2: > -Refactor check condition (Sebastien) > > v3: > -Update assert logic (Jeevan) > > Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> > --- > tests/chamelium/kms_chamelium_audio.c | 51 ++++++++++++++++++--------- > 1 file changed, 35 insertions(+), 16 deletions(-) > > diff --git a/tests/chamelium/kms_chamelium_audio.c > b/tests/chamelium/kms_chamelium_audio.c > index 2967e3c50..252a36274 100644 > --- a/tests/chamelium/kms_chamelium_audio.c > +++ b/tests/chamelium/kms_chamelium_audio.c > @@ -389,11 +389,11 @@ static int audio_output_frequencies_callback(void > *data, void *buffer, static bool test_audio_frequencies(struct audio_state *state) > { > int freq, step; > - int32_t *recv, *buf; > - double *channel; > + int32_t *recv = NULL, *buf = NULL; > + double *channel = NULL; > size_t i, j, streak; > - size_t recv_len, buf_len, buf_cap, channel_len; > - bool success; > + size_t recv_len = 0, buf_len, buf_cap, channel_len; > + bool success = false; > int capture_chan; > > state->signal = audio_signal_init(state->playback.channels, > @@ -426,9 +426,12 @@ static bool test_audio_frequencies(struct audio_state > *state) > > audio_state_start(state, "frequencies"); > > - igt_assert_f(state->capture.rate == state->playback.rate, > - "Capture rate (%dHz) doesn't match playback rate (%dHz)\n", > - state->capture.rate, state->playback.rate); > + if (state->capture.rate != state->playback.rate) { > + igt_critical("Capture rate (%dHz) doesn't match playback " > + "rate (%dHz)\n", > + state->capture.rate, state->playback.rate); > + goto out; > + } > > /* Needs to be a multiple of 128, because that's the number of samples > * we get per channel each time we receive an audio page from the @@ > -447,10 +450,6 @@ static bool test_audio_frequencies(struct audio_state *state) > buf = malloc(sizeof(int32_t) * buf_cap); > buf_len = 0; > > - recv = NULL; > - recv_len = 0; > - > - success = false; > streak = 0; > while (!success && state->msec < AUDIO_TIMEOUT) { > audio_state_receive(state, &recv, &recv_len); @@ -460,13 > +459,21 @@ static bool test_audio_frequencies(struct audio_state *state) > > if (buf_len < buf_cap) > continue; > - igt_assert(buf_len == buf_cap); > + if (buf_len > buf_cap) { > + igt_critical("Buffer overflow: %zu > %zu\n", > + buf_len, buf_cap); > + goto out; > + } > > igt_debug("Detecting audio signal, t=%d msec\n", state->msec); > > for (j = 0; j < state->playback.channels; j++) { > capture_chan = state->channel_mapping[j]; > - igt_assert(capture_chan >= 0); > + if (capture_chan < 0) { > + igt_critical("Invalid channel mapping for " > + "channel %zu\n", j); > + goto out; > + } > igt_debug("Processing channel %zu (captured as " > "channel %d)\n", > j, capture_chan); > @@ -489,6 +496,7 @@ static bool test_audio_frequencies(struct audio_state > *state) > success = streak == MIN_STREAK * state->playback.channels; > } > > +out: > audio_state_stop(state, success); > > free(recv); > @@ -587,6 +595,7 @@ static bool test_audio_flatline(struct audio_state *state) > recv = NULL; > recv_len = 0; > amp_success = false; > + align_success = false; > streak = 0; > while (!amp_success && state->msec < AUDIO_TIMEOUT) { > audio_state_receive(state, &recv, &recv_len); @@ -595,7 > +604,11 @@ static bool test_audio_flatline(struct audio_state *state) > > for (i = 0; i < state->playback.channels; i++) { > capture_chan = state->channel_mapping[i]; > - igt_assert(capture_chan >= 0); > + if (capture_chan < 0) { > + igt_critical("Invalid channel mapping for " > + "channel %zu\n", i); > + goto out; > + } > igt_debug("Processing channel %zu (captured as " > "channel %d)\n", > i, capture_chan); > @@ -661,6 +674,7 @@ static bool test_audio_flatline(struct audio_state *state) > } > } > > +out: > success = amp_success && align_success; > audio_state_stop(state, success); > > @@ -776,13 +790,18 @@ static void test_display_audio(chamelium_data_t > *data, > audio_state_fini(&state); > > alsa_close_output(alsa); > + > + /* Fail early if any test fails */ > + igt_assert_f(success, > + "Audio test failed for format %s, " > + "sampling rate %d Hz and %d channels\n", > + snd_pcm_format_name(format), > + sampling_rate, channels); > } > } > > /* Make sure we tested at least one frequency and format. */ > igt_assert(run); > - /* Make sure all runs were successful. */ > - igt_assert(success); > > igt_remove_fb(data->drm_fd, &fb); > > -- > 2.48.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure 2026-03-10 9:19 ` [PATCH v3 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure Mohammed Bilal 2026-03-12 6:21 ` B, Jeevan @ 2026-03-12 10:48 ` Sebastian Brzezinka 1 sibling, 0 replies; 9+ messages in thread From: Sebastian Brzezinka @ 2026-03-12 10:48 UTC (permalink / raw) To: Mohammed Bilal, igt-dev; +Cc: jeevan.b, kunal1.joshi, sebastian.brzezinka Hi Mohammad, On Tue Mar 10, 2026 at 10:19 AM CET, Mohammed Bilal wrote: > Fatal assertions can bypass cleanup paths, causing resources to remain > unreleased when failures occur during audio tests. > > Replace fatal assertions with non-fatal checks and route failures > through a common cleanup path to ensure proper cleanup. > > v2: > -Refactor check condition (Sebastien) > > v3: > -Update assert logic (Jeevan) > > Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> > --- > tests/chamelium/kms_chamelium_audio.c | 51 ++++++++++++++++++--------- > 1 file changed, 35 insertions(+), 16 deletions(-) > > diff --git a/tests/chamelium/kms_chamelium_audio.c b/tests/chamelium/kms_chamelium_audio.c > index 2967e3c50..252a36274 100644 > --- a/tests/chamelium/kms_chamelium_audio.c > +++ b/tests/chamelium/kms_chamelium_audio.c > @@ -389,11 +389,11 @@ static int audio_output_frequencies_callback(void *data, void *buffer, > static bool test_audio_frequencies(struct audio_state *state) > { > int freq, step; > - int32_t *recv, *buf; > - double *channel; > + int32_t *recv = NULL, *buf = NULL; > + double *channel = NULL; > size_t i, j, streak; > - size_t recv_len, buf_len, buf_cap, channel_len; > - bool success; > + size_t recv_len = 0, buf_len, buf_cap, channel_len; > + bool success = false; > int capture_chan; > > state->signal = audio_signal_init(state->playback.channels, > @@ -426,9 +426,12 @@ static bool test_audio_frequencies(struct audio_state *state) > > audio_state_start(state, "frequencies"); > > - igt_assert_f(state->capture.rate == state->playback.rate, > - "Capture rate (%dHz) doesn't match playback rate (%dHz)\n", > - state->capture.rate, state->playback.rate); > + if (state->capture.rate != state->playback.rate) { > + igt_critical("Capture rate (%dHz) doesn't match playback " > + "rate (%dHz)\n", > + state->capture.rate, state->playback.rate); > + goto out; > + } > > /* Needs to be a multiple of 128, because that's the number of samples > * we get per channel each time we receive an audio page from the > @@ -447,10 +450,6 @@ static bool test_audio_frequencies(struct audio_state *state) > buf = malloc(sizeof(int32_t) * buf_cap); > buf_len = 0; > > - recv = NULL; > - recv_len = 0; > - > - success = false; > streak = 0; > while (!success && state->msec < AUDIO_TIMEOUT) { > audio_state_receive(state, &recv, &recv_len); > @@ -460,13 +459,21 @@ static bool test_audio_frequencies(struct audio_state *state) > > if (buf_len < buf_cap) > continue; > - igt_assert(buf_len == buf_cap); > + if (buf_len > buf_cap) { > + igt_critical("Buffer overflow: %zu > %zu\n", > + buf_len, buf_cap); > + goto out; > + } > > igt_debug("Detecting audio signal, t=%d msec\n", state->msec); > > for (j = 0; j < state->playback.channels; j++) { > capture_chan = state->channel_mapping[j]; > - igt_assert(capture_chan >= 0); > + if (capture_chan < 0) { > + igt_critical("Invalid channel mapping for " > + "channel %zu\n", j); > + goto out; > + } > igt_debug("Processing channel %zu (captured as " > "channel %d)\n", > j, capture_chan); > @@ -489,6 +496,7 @@ static bool test_audio_frequencies(struct audio_state *state) > success = streak == MIN_STREAK * state->playback.channels; > } > > +out: > audio_state_stop(state, success); > > free(recv); > @@ -587,6 +595,7 @@ static bool test_audio_flatline(struct audio_state *state) > recv = NULL; > recv_len = 0; > amp_success = false; > + align_success = false; > streak = 0; > while (!amp_success && state->msec < AUDIO_TIMEOUT) { > audio_state_receive(state, &recv, &recv_len); > @@ -595,7 +604,11 @@ static bool test_audio_flatline(struct audio_state *state) > > for (i = 0; i < state->playback.channels; i++) { > capture_chan = state->channel_mapping[i]; > - igt_assert(capture_chan >= 0); > + if (capture_chan < 0) { > + igt_critical("Invalid channel mapping for " > + "channel %zu\n", i); > + goto out; > + } > igt_debug("Processing channel %zu (captured as " > "channel %d)\n", > i, capture_chan); > @@ -661,6 +674,7 @@ static bool test_audio_flatline(struct audio_state *state) > } > } > > +out: > success = amp_success && align_success; > audio_state_stop(state, success); > > @@ -776,13 +790,18 @@ static void test_display_audio(chamelium_data_t *data, > audio_state_fini(&state); > > alsa_close_output(alsa); > + > + /* Fail early if any test fails */ > + igt_assert_f(success, > + "Audio test failed for format %s, " > + "sampling rate %d Hz and %d channels\n", > + snd_pcm_format_name(format), > + sampling_rate, channels); Patch looks much better now, but this part seems outside the scope of the commit message. Failing fast here is fine, but you don’t mention it anywhere in the message, and it still bypasses some cleanup. It would be better to send this change separately. > } > } > > /* Make sure we tested at least one frequency and format. */ > igt_assert(run); > - /* Make sure all runs were successful. */ > - igt_assert(success); > > igt_remove_fb(data->drm_fd, &fb); > -- Best regards, Sebastian ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/chamelium/audio: Fix resource leaks in audio tests (rev3) 2026-03-10 9:19 [PATCH v3 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal 2026-03-10 9:19 ` [PATCH v3 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config Mohammed Bilal 2026-03-10 9:19 ` [PATCH v3 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure Mohammed Bilal @ 2026-03-10 12:00 ` Patchwork 2026-03-10 12:39 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-10 12:00 UTC (permalink / raw) To: Mohammed Bilal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 877 bytes --] == Series Details == Series: tests/chamelium/audio: Fix resource leaks in audio tests (rev3) URL : https://patchwork.freedesktop.org/series/162565/ State : success == Summary == CI Bug Log - changes from XEIGT_8789_BAT -> XEIGTPW_14713_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 13) ------------------------------ Missing (1): bat-atsm-2 Changes ------- No changes found Build changes ------------- * IGT: IGT_8789 -> IGTPW_14713 IGTPW_14713: 6e767c0d1d76325aa6cf5eb6e02092905745637a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8789: 8789 xe-4686-77e176657e782bb81270c230d1cfec91f7707162: 77e176657e782bb81270c230d1cfec91f7707162 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/index.html [-- Attachment #2: Type: text/html, Size: 1422 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/chamelium/audio: Fix resource leaks in audio tests (rev3) 2026-03-10 9:19 [PATCH v3 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal ` (2 preceding siblings ...) 2026-03-10 12:00 ` ✓ Xe.CI.BAT: success for tests/chamelium/audio: Fix resource leaks in audio tests (rev3) Patchwork @ 2026-03-10 12:39 ` Patchwork 2026-03-10 15:11 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-03-10 20:49 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-10 12:39 UTC (permalink / raw) To: Mohammed Bilal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3328 bytes --] == Series Details == Series: tests/chamelium/audio: Fix resource leaks in audio tests (rev3) URL : https://patchwork.freedesktop.org/series/162565/ State : success == Summary == CI Bug Log - changes from IGT_8789 -> IGTPW_14713 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/index.html Participating hosts (40 -> 38) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14713 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-dg2-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/bat-dg2-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/bat-dg2-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/bat-dg2-14/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-arls-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/bat-arls-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/bat-arls-6/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@read-crc: - fi-cfl-8109u: [PASS][7] -> [DMESG-WARN][8] ([i915#15673]) +48 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/bat-mtlp-8/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-9: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8789 -> IGTPW_14713 CI-20190529: 20190529 CI_DRM_18116: 77e176657e782bb81270c230d1cfec91f7707162 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14713: 6e767c0d1d76325aa6cf5eb6e02092905745637a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8789: 8789 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/index.html [-- Attachment #2: Type: text/html, Size: 4351 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/chamelium/audio: Fix resource leaks in audio tests (rev3) 2026-03-10 9:19 [PATCH v3 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal ` (3 preceding siblings ...) 2026-03-10 12:39 ` ✓ i915.CI.BAT: " Patchwork @ 2026-03-10 15:11 ` Patchwork 2026-03-10 20:49 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-10 15:11 UTC (permalink / raw) To: Mohammed Bilal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 46264 bytes --] == Series Details == Series: tests/chamelium/audio: Fix resource leaks in audio tests (rev3) URL : https://patchwork.freedesktop.org/series/162565/ State : failure == Summary == CI Bug Log - changes from XEIGT_8789_FULL -> XEIGTPW_14713_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14713_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14713_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14713_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_module_load@reload: - shard-lnl: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-lnl-2/igt@xe_module_load@reload.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-4/igt@xe_module_load@reload.html - shard-bmg: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@xe_module_load@reload.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@xe_module_load@reload.html * igt@xe_prefetch_fault@prefetch-fault: - shard-bmg: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@xe_prefetch_fault@prefetch-fault.html Known issues ------------ Here are the changes found in XEIGTPW_14713_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-reset-rebind: - shard-lnl: [PASS][6] -> [DMESG-WARN][7] ([Intel XE#7145]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-lnl-4/igt@device_reset@unbind-reset-rebind.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-4/igt@device_reset@unbind-reset-rebind.html - shard-bmg: [PASS][8] -> [DMESG-WARN][9] ([Intel XE#7145]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-7/igt@device_reset@unbind-reset-rebind.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@device_reset@unbind-reset-rebind.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear: - shard-lnl: [PASS][10] -> [FAIL][11] ([Intel XE#5993] / [Intel XE#6054]) +3 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-7/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7059] / [Intel XE#7085]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-10/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1477] / [Intel XE#7361]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#607] / [Intel XE#7361]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +5 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1512] / [Intel XE#7392]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-10/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#367] / [Intel XE#7354]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-6/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2652]) +12 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +8 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#373]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#6973]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-4/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#6974]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#6974]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-4/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2321] / [Intel XE#7355]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1424]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-6/igt@kms_cursor_crc@cursor-random-64x21.html - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-2/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#2291]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2291] / [Intel XE#7343]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#1340]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_link_training@uhbr-sst: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#4354] / [Intel XE#5870]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-3/igt@kms_dp_link_training@uhbr-sst.html - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4354] / [Intel XE#5870]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-7/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#6126] / [Intel XE#776]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2373] / [Intel XE#7344]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-4/igt@kms_feature_discovery@display-2x.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1421]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-7/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7178] / [Intel XE#7351]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#6312] / [Intel XE#651]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2311]) +9 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#4141]) +7 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2312]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2313]) +11 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#656]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_hdr@static-swap: - shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#1503]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-3/igt@kms_hdr@static-swap.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-force-big-joiner: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7086] / [Intel XE#7390]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#7086]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#7283]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-modifier: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7283]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-modifier.html * igt@kms_plane_multiple@2x-tiling-none: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#4596] / [Intel XE#5854]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#5021] / [Intel XE#7377]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-10/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2571] / [Intel XE#7343]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#3307]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#7376] / [Intel XE#870]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-4/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2938] / [Intel XE#7376]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-6/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1489]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2387] / [Intel XE#7429]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-3/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-6/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2234]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-4/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1127] / [Intel XE#5813]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2413]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2426] / [Intel XE#5848]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_eudebug@basic-vm-bind-extended: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#4837]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-extended.html * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html * igt@xe_eudebug_online@interrupt-all: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4837] / [Intel XE#6665]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-5/igt@xe_eudebug_online@interrupt-all.html * igt@xe_evict@evict-small-external-multi-queue-cm: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#7140]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@xe_evict@evict-small-external-multi-queue-cm.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt@xe_exec_balancer@many-execqueues-virtual-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#7482]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-8/igt@xe_exec_balancer@many-execqueues-virtual-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1392]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2322] / [Intel XE#7372]) +8 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#7136]) +6 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-6/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_fault_mode@twice-multi-queue-rebind: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#7136]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-rebind.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#6874]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-7/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_multi_queue@two-queues-priority: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#6874]) +14 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-priority.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#4837]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-4/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-basic: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7138]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-fd-basic.html * igt@xe_exec_threads@threads-multi-queue-fd-basic: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#7138]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-fd-basic.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-8/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_multigpu_svm@mgpu-latency-basic: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6964]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@xe_multigpu_svm@mgpu-latency-basic.html - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#6964]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-8/igt@xe_multigpu_svm@mgpu-latency-basic.html * igt@xe_peer2peer@read: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-10/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2284] / [Intel XE#7370]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1948]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-5/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pxp@pxp-termination-key-update-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#4733] / [Intel XE#7417]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-1/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html * igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#7174]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-4/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#4130] / [Intel XE#7366]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][110] -> [FAIL][111] ([Intel XE#6569]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html #### Possible fixes #### * igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-dp-2: - shard-bmg: [INCOMPLETE][112] -> [PASS][113] +2 other tests pass [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-7/igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-dp-2.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-8/igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-dp-2.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][114] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][116] ([Intel XE#7084]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2: - shard-bmg: [FAIL][118] ([Intel XE#6841]) -> [PASS][119] +1 other test pass [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-6/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [SKIP][120] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][122] ([Intel XE#7571]) -> [PASS][123] +1 other test pass [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][124] ([Intel XE#2316]) -> [PASS][125] +7 other tests pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][126] ([Intel XE#1435]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][128] ([Intel XE#4459]) -> [PASS][129] +1 other test pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_system_allocator@many-large-malloc-prefetch-race: - shard-bmg: [ABORT][130] -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-2/igt@xe_exec_system_allocator@many-large-malloc-prefetch-race.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-8/igt@xe_exec_system_allocator@many-large-malloc-prefetch-race.html * igt@xe_exec_system_allocator@once-large-mmap-remap-dontunmap: - shard-bmg: [DMESG-FAIL][132] ([Intel XE#5213] / [Intel XE#6652]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-2/igt@xe_exec_system_allocator@once-large-mmap-remap-dontunmap.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-8/igt@xe_exec_system_allocator@once-large-mmap-remap-dontunmap.html * igt@xe_oa@non-zero-reason-all: - shard-lnl: [FAIL][134] ([Intel XE#7334]) -> [PASS][135] +1 other test pass [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-lnl-7/igt@xe_oa@non-zero-reason-all.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-lnl-7/igt@xe_oa@non-zero-reason-all.html #### Warnings #### * igt@kms_content_protection@legacy-hdcp14: - shard-bmg: [FAIL][136] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][137] ([Intel XE#7194]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-8/igt@kms_content_protection@legacy-hdcp14.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][138] ([Intel XE#2341]) -> [FAIL][139] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@kms_content_protection@srm.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-4/igt@kms_content_protection@srm.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][140] ([Intel XE#2311]) -> [SKIP][141] ([Intel XE#2312]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][142] ([Intel XE#4141]) -> [SKIP][143] ([Intel XE#2312]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][144] ([Intel XE#2312]) -> [SKIP][145] ([Intel XE#4141]) +6 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][146] ([Intel XE#2312]) -> [SKIP][147] ([Intel XE#2311]) +11 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][148] ([Intel XE#2312]) -> [SKIP][149] ([Intel XE#2313]) +12 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][150] ([Intel XE#2313]) -> [SKIP][151] ([Intel XE#2312]) +10 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8789/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [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#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854 [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [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#7145]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7145 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7334]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7334 [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#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366 [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#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390 [Intel XE#7392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7392 [Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 Build changes ------------- * IGT: IGT_8789 -> IGTPW_14713 IGTPW_14713: 6e767c0d1d76325aa6cf5eb6e02092905745637a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8789: 8789 xe-4686-77e176657e782bb81270c230d1cfec91f7707162: 77e176657e782bb81270c230d1cfec91f7707162 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14713/index.html [-- Attachment #2: Type: text/html, Size: 52489 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/chamelium/audio: Fix resource leaks in audio tests (rev3) 2026-03-10 9:19 [PATCH v3 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal ` (4 preceding siblings ...) 2026-03-10 15:11 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-03-10 20:49 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-03-10 20:49 UTC (permalink / raw) To: Mohammed Bilal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 146300 bytes --] == Series Details == Series: tests/chamelium/audio: Fix resource leaks in audio tests (rev3) URL : https://patchwork.freedesktop.org/series/162565/ State : failure == Summary == CI Bug Log - changes from IGT_8789_full -> IGTPW_14713_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14713_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14713_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_14713/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_14713_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_flush@basic-uc-ro-default: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-snb7/igt@gem_exec_flush@basic-uc-ro-default.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-snb5/igt@gem_exec_flush@basic-uc-ro-default.html Known issues ------------ Here are the changes found in IGTPW_14713_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_buddy@drm_buddy: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#15678]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@drm_buddy@drm_buddy.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#3281]) +8 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#7697]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html - shard-tglu: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-8/igt@gem_ccs@block-copy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][13] ([i915#12392] / [i915#13356]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-8/igt@gem_close_race@multigpu-basic-process.html - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][16] ([i915#1099]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-snb1/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-close.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#4525]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#4525]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#4525]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-5/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-3/igt@gem_exec_balancer@sliced.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4812]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@gem_exec_balancer@sliced.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-2/igt@gem_exec_balancer@sliced.html * igt@gem_exec_big@single: - shard-mtlp: [PASS][28] -> [DMESG-FAIL][29] ([i915#15478]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-mtlp-2/igt@gem_exec_big@single.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-8/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-3/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][34] +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-7/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#14544] / [i915#3281]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +5 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-6/igt@gem_exec_reloc@basic-write-read-active.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0: - shard-rkl: [PASS][41] -> [INCOMPLETE][42] ([i915#13356]) +1 other test incomplete [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-8/igt@gem_exec_suspend@basic-s0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s3: - shard-glk: NOTRUN -> [INCOMPLETE][43] ([i915#13196] / [i915#13356]) +1 other test incomplete [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk2/igt@gem_exec_suspend@basic-s3.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_gtt_cpu_tlb: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4077]) +9 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-19/igt@gem_gtt_cpu_tlb.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][48] ([i915#2190]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk8/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613] / [i915#7582]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613] / [i915#7582]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-9/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-multi: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#14544] / [i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk1/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-10/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@gem_lmem_swapping@verify-random.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#284]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +8 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-5/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-1/igt@gem_mmap_wc@close.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@gem_mmap_wc@close.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-3/igt@gem_mmap_wc@close.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][62] ([i915#2658]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk6/igt@gem_pread@exhaustion.html * igt@gem_pread@self: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@gem_pread@self.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-glk: NOTRUN -> [DMESG-WARN][64] ([i915#118]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk8/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-19/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-5/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-4/igt@gem_render_copy@y-tiled-ccs-to-linear.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][69] +392 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_softpin@noreloc-s3: - shard-glk: [PASS][70] -> [INCOMPLETE][71] ([i915#13809]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-glk1/igt@gem_softpin@noreloc-s3.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk9/igt@gem_softpin@noreloc-s3.html - shard-rkl: [PASS][72] -> [INCOMPLETE][73] ([i915#13809]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-8/igt@gem_softpin@noreloc-s3.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][77] ([i915#13356] / [i915#14586]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk6/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-fd: - shard-glk: [PASS][78] -> [INCOMPLETE][79] ([i915#13356] / [i915#14586]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-glk6/igt@gem_workarounds@suspend-resume-fd.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk2/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@batch-zero-length: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-7/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-9/igt@gen9_exec_parse@bb-large.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#2856]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-5/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@gen9_exec_parse@bb-secure.html - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@gen9_exec_parse@bb-start-cmd.html * igt@i915_drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#11527]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@i915_drm_fdinfo@busy-idle-check-all@vcs1.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#14118]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-4/igt@i915_drm_fdinfo@virtual-busy.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#14118]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-19/igt@i915_drm_fdinfo@virtual-busy.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#14118]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-8/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][90] ([i915#15342]) +1 other test abort [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk1/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][91] -> [DMESG-WARN][92] ([i915#13029] / [i915#14545]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg2-4/igt@i915_module_load@reload-no-display.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-8/igt@i915_module_load@reload-no-display.html - shard-tglu-1: NOTRUN -> [DMESG-WARN][93] ([i915#13029] / [i915#14545]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][94] -> [DMESG-WARN][95] ([i915#14545]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg2-5/igt@i915_module_load@resize-bar.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-1/igt@i915_module_load@resize-bar.html - shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#6412]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-3/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][98] -> [INCOMPLETE][99] ([i915#13356] / [i915#13820]) +1 other test incomplete [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg2-8/igt@i915_pm_freq_api@freq-suspend@gt0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#11681] / [i915#6621]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#11681]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#6245]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@i915_query@hwconfig_table.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4077]) +7 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-7/igt@i915_suspend@fence-restore-tiled2untiled.html - shard-glk: NOTRUN -> [INCOMPLETE][104] ([i915#4817]) +1 other test incomplete [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#7707]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-10/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4215] / [i915#5190]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4215]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4212]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#12454] / [i915#12712]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-1/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][112] ([i915#12761]) +1 other test incomplete [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#9531]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-10/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][115] -> [FAIL][116] ([i915#15662]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-19/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#5286]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#5286]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][121] +9 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-3/igt@kms_big_fb@linear-64bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#3638]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][123] ([i915#3638]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6187]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +6 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4423] / [i915#4538]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#6095]) +189 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][130] +128 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk11/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#6095]) +34 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6095]) +9 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#14544] / [i915#6095]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#14098] / [i915#6095]) +43 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#12313]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-snb: NOTRUN -> [SKIP][137] +96 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-snb1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#6095]) +75 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#6095]) +44 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [SKIP][140] +135 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#12805] / [i915#14544]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#12805]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6095]) +44 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#12805]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][146] ([i915#12805]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#12805]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][148] ([i915#12805]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#12805]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][150] ([i915#14694] / [i915#15582]) +1 other test incomplete [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#6095]) +69 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#14544]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#9979]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#7118] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-8/igt@kms_content_protection@atomic.html - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#15330] / [i915#3116] / [i915#3299]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-7/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#15330] / [i915#3299]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][166] ([i915#15330] / [i915#3116]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#15330] / [i915#3299]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#14544] / [i915#15330] / [i915#3116]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#6944] / [i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#6944] / [i915#9424]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent-hdcp14: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#6944]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-8/igt@kms_content_protection@uevent-hdcp14.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#6944]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_content_protection@uevent-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#6944]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@kms_content_protection@uevent-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#6944]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-9/igt@kms_content_protection@uevent-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#6944]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-2/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#13049]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][179] ([i915#13049]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#13049]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu: NOTRUN -> [SKIP][181] ([i915#13049]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#13049]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][183] ([i915#13566]) +1 other test fail [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3555]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x10.html - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8814]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-19/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#13049]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3555]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#8814]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][190] ([i915#13566]) +1 other test fail [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [PASS][191] -> [FAIL][192] ([i915#13566]) +1 other test fail [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-256x85.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-suspend: - shard-mtlp: [PASS][193] -> [FAIL][194] ([i915#13566] / [i915#15733]) +1 other test fail [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-mtlp-6/igt@kms_cursor_crc@cursor-suspend.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-7/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_edge_walk@128x128-right-edge: - shard-dg1: [PASS][195] -> [DMESG-WARN][196] ([i915#4423]) +2 other tests dmesg-warn [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-14/igt@kms_cursor_edge_walk@128x128-right-edge.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_cursor_edge_walk@128x128-right-edge.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#13046] / [i915#5354]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][198] +14 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#9809]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#9067]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#4103] / [i915#4213]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#4103]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#1769] / [i915#3555] / [i915#3804]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3804]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3804]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#1257]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#13748]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#8812]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#8812]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3840]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3840] / [i915#9053]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@dp-mst: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#9337]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#658]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@kms_feature_discovery@psr2.html - shard-tglu: NOTRUN -> [SKIP][215] ([i915#658]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-6/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][216] ([i915#658]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-5/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][217] ([i915#658]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#9934]) +5 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#3637] / [i915#9934]) +9 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9934]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-rkl: NOTRUN -> [SKIP][221] ([i915#14544] / [i915#9934]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3637] / [i915#9934]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#9934]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-8/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-snb: [PASS][224] -> [TIMEOUT][225] ([i915#14033] / [i915#14350]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][226] -> [TIMEOUT][227] ([i915#14033]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +4 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a2: - shard-rkl: [PASS][229] -> [INCOMPLETE][230] ([i915#6113]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-1/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#15643]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#15643]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#15643]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#15643]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-edid: - shard-dg1: NOTRUN -> [ABORT][236] ([i915#4391] / [i915#4423]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_force_connector_basic@force-edid.html - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#15672]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [DMESG-WARN][238] ([i915#4423]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#1825]) +30 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][240] +45 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#1825]) +15 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#8708]) +4 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#15104]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#15102]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#15102]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#15102] / [i915#3458]) +6 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html - shard-rkl: NOTRUN -> [SKIP][247] ([i915#14544] / [i915#15102] / [i915#3023]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#5354]) +21 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-tglu-1: NOTRUN -> [SKIP][249] +38 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#14544] / [i915#1825]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#9766]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#15102]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][253] ([i915#15102]) +23 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#15102]) +14 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#8708]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#15102] / [i915#3458]) +8 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#15102] / [i915#3023]) +15 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-9/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html - shard-rkl: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#12713] / [i915#3555] / [i915#8228]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-7/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#13688]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#15460]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#15458]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#6301]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-8/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#6301]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][268] +26 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][269] -> [INCOMPLETE][270] ([i915#12756] / [i915#13476]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [INCOMPLETE][271] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: [PASS][272] -> [INCOMPLETE][273] ([i915#13476]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#14712]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#14712]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#15709]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#15709]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html - shard-dg2: NOTRUN -> [SKIP][278] ([i915#15709]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#15608]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html - shard-dg1: NOTRUN -> [SKIP][280] ([i915#15608]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#15709]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#15709]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#11614] / [i915#3582]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#3555]) +4 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#13958]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-4.html - shard-rkl: NOTRUN -> [SKIP][287] ([i915#13958]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-1/igt@kms_plane_multiple@2x-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#13958]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][289] ([i915#13958]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-4.html - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#13958]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-2/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#13958]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#14259]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#14544] / [i915#15329]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#15329]) +4 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#15329]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#9812]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#5354]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#9685]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#3828]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#15739]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html - shard-tglu: NOTRUN -> [SKIP][301] ([i915#15739]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#8430]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][303] -> [SKIP][304] ([i915#15073]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][305] -> [SKIP][306] ([i915#15073]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#15073]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][308] -> [SKIP][309] ([i915#15073]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk11: NOTRUN -> [INCOMPLETE][310] ([i915#10553]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk11/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#14544] / [i915#6524]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#11520]) +9 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#9808]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][314] ([i915#11520]) +4 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][315] ([i915#11520]) +5 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][316] ([i915#11520]) +9 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#11520]) +7 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-9/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#12316]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#11520]) +5 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#11520]) +3 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#11520] / [i915#14544]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][322] ([i915#11520]) +4 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-dg1: NOTRUN -> [SKIP][323] ([i915#11520]) +5 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#9683]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#9683]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +11 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#1072] / [i915#9732]) +6 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-4/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@fbc-psr2-no-drrs@edp-1: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#9688]) +4 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-2/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html * igt@kms_psr@pr-primary-page-flip: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#9732]) +14 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-8/igt@kms_psr@pr-primary-page-flip.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#14544] / [i915#9732]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +12 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#9732]) +11 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][333] ([i915#4884]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#5289]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#5289]) +3 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][336] ([i915#13179]) +1 other test abort [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk8/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: [PASS][337] -> [FAIL][338] ([i915#15106]) +1 other test fail [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][339] ([i915#3555] / [i915#8809]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#8623]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#14544] / [i915#15243] / [i915#3555]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#11920]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#3555] / [i915#9906]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-10/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#9906]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-rkl: NOTRUN -> [SKIP][345] ([i915#9906]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#9906]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-tglu: NOTRUN -> [SKIP][347] ([i915#9906]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#8808] / [i915#9906]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf_pmu@busy-double-start@ccs0: - shard-dg2: [PASS][349] -> [FAIL][350] ([i915#4349]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg2-4/igt@perf_pmu@busy-double-start@ccs0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-5/igt@perf_pmu@busy-double-start@ccs0.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg1: [PASS][351] -> [FAIL][352] ([i915#4349]) +3 other tests fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-17/igt@perf_pmu@busy-idle@vcs0.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@busy@bcs0: - shard-mtlp: [PASS][353] -> [FAIL][354] ([i915#4349]) +1 other test fail [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-mtlp-6/igt@perf_pmu@busy@bcs0.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-1/igt@perf_pmu@busy@bcs0.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#8516]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-8/igt@perf_pmu@rc6-all-gts.html - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#8516]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][357] ([i915#8516]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2: - shard-tglu-1: NOTRUN -> [FAIL][358] ([i915#12910]) +18 other tests fail [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][359] ([i915#13356]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_exec_suspend@basic-s3-devices: - shard-dg1: [DMESG-WARN][361] ([i915#4423]) -> [PASS][362] +2 other tests pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-13/igt@gem_exec_suspend@basic-s3-devices.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@gem_exec_suspend@basic-s3-devices.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [INCOMPLETE][363] ([i915#13356]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-4/igt@gem_workarounds@suspend-resume-context.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@gem_workarounds@suspend-resume-context.html * igt@i915_module_load@load: - shard-dg1: ([PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [DMESG-WARN][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388]) ([i915#4391] / [i915#4423]) -> ([PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-17/igt@i915_module_load@load.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-13/igt@i915_module_load@load.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-14/igt@i915_module_load@load.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-15/igt@i915_module_load@load.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-16/igt@i915_module_load@load.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-16/igt@i915_module_load@load.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-14/igt@i915_module_load@load.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-12/igt@i915_module_load@load.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-13/igt@i915_module_load@load.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-17/igt@i915_module_load@load.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-17/igt@i915_module_load@load.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-16/igt@i915_module_load@load.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-13/igt@i915_module_load@load.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-13/igt@i915_module_load@load.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-18/igt@i915_module_load@load.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-19/igt@i915_module_load@load.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-14/igt@i915_module_load@load.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-18/igt@i915_module_load@load.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-12/igt@i915_module_load@load.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-15/igt@i915_module_load@load.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-17/igt@i915_module_load@load.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-18/igt@i915_module_load@load.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-14/igt@i915_module_load@load.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-15/igt@i915_module_load@load.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@i915_module_load@load.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@i915_module_load@load.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@i915_module_load@load.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@i915_module_load@load.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@i915_module_load@load.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@i915_module_load@load.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-16/igt@i915_module_load@load.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-14/igt@i915_module_load@load.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@i915_module_load@load.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-13/igt@i915_module_load@load.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@i915_module_load@load.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-13/igt@i915_module_load@load.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@i915_module_load@load.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-13/igt@i915_module_load@load.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@i915_module_load@load.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-13/igt@i915_module_load@load.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@i915_module_load@load.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@i915_module_load@load.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@i915_module_load@load.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@i915_module_load@load.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@i915_module_load@load.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@i915_module_load@load.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-19/igt@i915_module_load@load.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-19/igt@i915_module_load@load.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-19/igt@i915_module_load@load.html * igt@i915_selftest@live: - shard-mtlp: [DMESG-FAIL][414] ([i915#12061] / [i915#15560]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-mtlp-4/igt@i915_selftest@live.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-1/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][416] ([i915#12061]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-mtlp-4/igt@i915_selftest@live@workarounds.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-1/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [DMESG-WARN][418] ([i915#14545]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg2-8/igt@i915_suspend@basic-s3-without-i915.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html - shard-dg1: [DMESG-WARN][420] ([i915#14545]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-13/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [FAIL][422] ([i915#5956]) -> [PASS][423] +1 other test pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [INCOMPLETE][424] ([i915#15582]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][426] ([i915#13566]) -> [PASS][427] +5 other tests pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][428] ([i915#13566]) -> [PASS][429] +5 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_flip@dpms-vs-vblank-race-interruptible: - shard-mtlp: [FAIL][430] ([i915#10826]) -> [PASS][431] +1 other test pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-mtlp-5/igt@kms_flip@dpms-vs-vblank-race-interruptible.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-mtlp-6/igt@kms_flip@dpms-vs-vblank-race-interruptible.html * igt@kms_hdr@static-swap: - shard-rkl: [SKIP][432] ([i915#3555] / [i915#8228]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-5/igt@kms_hdr@static-swap.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_hdr@static-swap.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#15073]) -> [PASS][435] +1 other test pass [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html #### Warnings #### * igt@device_reset@cold-reset-bound: - shard-rkl: [SKIP][436] ([i915#11078]) -> [SKIP][437] ([i915#11078] / [i915#14544]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-2/igt@device_reset@cold-reset-bound.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@device_reset@cold-reset-bound.html * igt@gem_basic@multigpu-create-close: - shard-rkl: [SKIP][438] ([i915#7697]) -> [SKIP][439] ([i915#14544] / [i915#7697]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-7/igt@gem_basic@multigpu-create-close.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#9323]) -> [SKIP][441] ([i915#9323]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: [SKIP][442] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][443] ([i915#3555] / [i915#9323]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: [SKIP][444] ([i915#3555] / [i915#9323]) -> [SKIP][445] ([i915#14544] / [i915#3555] / [i915#9323]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: [SKIP][446] ([i915#9323]) -> [SKIP][447] ([i915#14544] / [i915#9323]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-4/igt@gem_ccs@suspend-resume.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: [SKIP][448] ([i915#14544] / [i915#6335]) -> [SKIP][449] ([i915#6335]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_sseu@engines: - shard-rkl: [SKIP][450] ([i915#280]) -> [SKIP][451] ([i915#14544] / [i915#280]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-7/igt@gem_ctx_sseu@engines.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#4525]) -> [SKIP][453] ([i915#4525]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gem_exec_balancer@parallel.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][454] ([i915#6334]) -> [SKIP][455] ([i915#14544] / [i915#6334]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-rkl: [SKIP][456] ([i915#3281]) -> [SKIP][457] ([i915#14544] / [i915#3281]) +2 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-noreloc.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#3281]) -> [SKIP][459] ([i915#3281]) +5 other tests skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-8/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][460] ([i915#7276]) -> [SKIP][461] ([i915#14544] / [i915#7276]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-8/igt@gem_exec_schedule@semaphore-power.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#2190]) -> [SKIP][463] ([i915#2190]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gem_huc_copy@huc-copy.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@random: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#4613]) -> [SKIP][465] ([i915#4613]) +1 other test skip [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gem_lmem_swapping@random.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-rkl: [SKIP][466] ([i915#4613]) -> [SKIP][467] ([i915#14544] / [i915#4613]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-5/igt@gem_lmem_swapping@verify-random-ccs.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_madvise@dontneed-before-pwrite: - shard-rkl: [SKIP][468] ([i915#3282]) -> [SKIP][469] ([i915#14544] / [i915#3282]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-2/igt@gem_madvise@dontneed-before-pwrite.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [SKIP][470] ([i915#13717] / [i915#14544]) -> [SKIP][471] ([i915#13717]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][472] ([i915#14544] / [i915#8411]) -> [SKIP][473] ([i915#8411]) +2 other tests skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#3282]) -> [SKIP][475] ([i915#3282]) +2 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@gem_set_tiling_vs_pwrite.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][476] ([i915#3282] / [i915#3297]) -> [SKIP][477] ([i915#14544] / [i915#3282] / [i915#3297]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gen7_exec_parse@basic-rejected: - shard-rkl: [SKIP][478] -> [SKIP][479] ([i915#14544]) +7 other tests skip [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-3/igt@gen7_exec_parse@basic-rejected.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#2527]) -> [SKIP][481] ([i915#2527]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@gen9_exec_parse@basic-rejected.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][482] ([i915#8399]) -> [SKIP][483] ([i915#14544] / [i915#8399]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-3/igt@i915_pm_freq_api@freq-basic-api.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#8399]) -> [SKIP][485] ([i915#8399]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@i915_pm_freq_api@freq-reset.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: [SKIP][486] ([i915#4423] / [i915#9531]) -> [SKIP][487] ([i915#9531]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-16/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][489] ([i915#1769] / [i915#3555]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#5286]) -> [SKIP][491] ([i915#5286]) +4 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: [SKIP][492] ([i915#5286]) -> [SKIP][493] ([i915#14544] / [i915#5286]) +1 other test skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-rkl: [SKIP][494] ([i915#3638]) -> [SKIP][495] ([i915#14544] / [i915#3638]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-7/igt@kms_big_fb@linear-16bpp-rotate-270.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: [SKIP][496] ([i915#3828]) -> [SKIP][497] ([i915#14544] / [i915#3828]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][498] ([i915#14544] / [i915#3638]) -> [SKIP][499] ([i915#3638]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-1/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#6095]) -> [SKIP][501] ([i915#6095]) +5 other tests skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: [SKIP][502] ([i915#12313]) -> [SKIP][503] ([i915#12313] / [i915#14544]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][504] ([i915#12313] / [i915#14544]) -> [SKIP][505] ([i915#12313]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][506] ([i915#6095]) -> [SKIP][507] ([i915#14544] / [i915#6095]) +3 other tests skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][508] ([i915#14098] / [i915#6095]) -> [SKIP][509] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][510] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][511] ([i915#14098] / [i915#6095]) +11 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][512] ([i915#3742]) -> [SKIP][513] ([i915#14544] / [i915#3742]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-1/igt@kms_cdclk@mode-transition.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: [SKIP][514] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][515] ([i915#11151] / [i915#7828]) +4 other tests skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: [SKIP][516] ([i915#11151] / [i915#7828]) -> [SKIP][517] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-5/igt@kms_chamelium_frames@dp-crc-fast.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-rkl: [SKIP][518] ([i915#14544] / [i915#6944]) -> [SKIP][519] ([i915#6944]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][521] ([i915#15330] / [i915#3116]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][522] ([i915#15330] / [i915#3116]) -> [SKIP][523] ([i915#14544] / [i915#15330] / [i915#3116]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: [SKIP][524] ([i915#3555]) -> [SKIP][525] ([i915#14544] / [i915#3555]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: [SKIP][526] ([i915#13049] / [i915#14544]) -> [SKIP][527] ([i915#13049]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#3555]) -> [SKIP][529] ([i915#3555]) +1 other test skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][530] ([i915#14544]) -> [SKIP][531] +11 other tests skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg1: [SKIP][532] -> [SKIP][533] ([i915#4423]) +2 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-16/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: [SKIP][534] ([i915#13749] / [i915#14544]) -> [SKIP][535] ([i915#13749]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][536] ([i915#13749]) -> [SKIP][537] ([i915#13749] / [i915#14544]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-sst.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: [SKIP][538] ([i915#3555] / [i915#3840]) -> [SKIP][539] ([i915#3555] / [i915#3840] / [i915#4423]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][540] ([i915#14544] / [i915#1839]) -> [SKIP][541] ([i915#1839]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_feature_discovery@display-3x.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-1/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][542] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][543] ([i915#12314] / [i915#12745] / [i915#4839]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][544] ([i915#4839]) -> [INCOMPLETE][545] ([i915#12314] / [i915#4839]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: [SKIP][546] ([i915#9934]) -> [SKIP][547] ([i915#14544] / [i915#9934]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html - shard-dg1: [SKIP][548] ([i915#4423] / [i915#9934]) -> [SKIP][549] ([i915#9934]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-16/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-17/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: [SKIP][550] ([i915#14544] / [i915#9934]) -> [SKIP][551] ([i915#9934]) +2 other tests skip [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [ABORT][552] ([i915#15132]) -> [INCOMPLETE][553] ([i915#6113]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-1/igt@kms_flip@flip-vs-suspend.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: [SKIP][554] ([i915#15643]) -> [SKIP][555] ([i915#14544] / [i915#15643]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][556] ([i915#1825]) -> [SKIP][557] ([i915#14544] / [i915#1825]) +16 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][558] ([i915#15102] / [i915#3023]) -> [SKIP][559] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][560] ([i915#14544] / [i915#15102]) -> [SKIP][561] ([i915#15102]) +3 other tests skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][562] ([i915#15102]) -> [SKIP][563] ([i915#14544] / [i915#15102]) +1 other test skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][564] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][565] ([i915#15102] / [i915#3023]) +9 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][566] ([i915#14544] / [i915#1825]) -> [SKIP][567] ([i915#1825]) +14 other tests skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][568] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][569] ([i915#15102] / [i915#3458]) +2 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: [SKIP][570] ([i915#14544] / [i915#5439]) -> [SKIP][571] ([i915#5439]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][572] ([i915#1187] / [i915#12713] / [i915#4423]) -> [SKIP][573] ([i915#12713]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: [SKIP][574] ([i915#14544] / [i915#14712]) -> [SKIP][575] ([i915#14712]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-rkl: [SKIP][576] ([i915#14544] / [i915#15709]) -> [SKIP][577] ([i915#15709]) +2 other tests skip [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: [SKIP][578] ([i915#15709]) -> [SKIP][579] ([i915#14544] / [i915#15709]) +1 other test skip [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-rkl: [SKIP][580] ([i915#13958] / [i915#14544]) -> [SKIP][581] ([i915#13958]) [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-dg1: [SKIP][582] ([i915#15329]) -> [SKIP][583] ([i915#15329] / [i915#4423]) +1 other test skip [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: [SKIP][584] ([i915#5354]) -> [SKIP][585] ([i915#14544] / [i915#5354]) [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-3/igt@kms_pm_backlight@basic-brightness.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: [SKIP][586] ([i915#9685]) -> [SKIP][587] ([i915#14544] / [i915#9685]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][588] ([i915#3828]) -> [SKIP][589] ([i915#9340]) [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][590] ([i915#14544] / [i915#15403]) -> [SKIP][591] ([i915#15403]) [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_pm_rpm@package-g7.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@kms_pm_rpm@package-g7.html * igt@kms_prime@basic-crc-hybrid: - shard-dg1: [SKIP][592] ([i915#6524]) -> [SKIP][593] ([i915#4423] / [i915#6524]) [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-12/igt@kms_prime@basic-crc-hybrid.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][594] ([i915#11520] / [i915#14544]) -> [SKIP][595] ([i915#11520]) +2 other tests skip [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg1: [SKIP][596] ([i915#11520] / [i915#4423]) -> [SKIP][597] ([i915#11520]) [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][598] ([i915#11520]) -> [SKIP][599] ([i915#11520] / [i915#14544]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: [SKIP][600] ([i915#14544] / [i915#9683]) -> [SKIP][601] ([i915#9683]) [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: [SKIP][602] ([i915#1072] / [i915#9732]) -> [SKIP][603] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-8/igt@kms_psr@fbc-psr2-primary-blt.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: [SKIP][604] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][605] ([i915#1072] / [i915#9732]) +10 other tests skip [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-3/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: [SKIP][606] ([i915#14544] / [i915#9685]) -> [SKIP][607] ([i915#9685]) [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_vrr@max-min: - shard-rkl: [SKIP][608] ([i915#14544] / [i915#9906]) -> [SKIP][609] ([i915#9906]) [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@kms_vrr@max-min.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-7/igt@kms_vrr@max-min.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][610] ([i915#2434]) -> [SKIP][611] ([i915#14544] / [i915#2434]) [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-7/igt@perf@mi-rpc.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][612] ([i915#14544] / [i915#2433]) -> [SKIP][613] ([i915#2433]) [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-1/igt@perf@unprivileged-single-ctx-counters.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: [SKIP][614] ([i915#9917]) -> [SKIP][615] ([i915#14544] / [i915#9917]) [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8789/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [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#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [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#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [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#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#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#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#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#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [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#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [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#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#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 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8789 -> IGTPW_14713 CI-20190529: 20190529 CI_DRM_18116: 77e176657e782bb81270c230d1cfec91f7707162 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14713: 6e767c0d1d76325aa6cf5eb6e02092905745637a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8789: 8789 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14713/index.html [-- Attachment #2: Type: text/html, Size: 199737 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-03-12 10:48 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-10 9:19 [PATCH v3 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal 2026-03-10 9:19 ` [PATCH v3 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config Mohammed Bilal 2026-03-10 9:19 ` [PATCH v3 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure Mohammed Bilal 2026-03-12 6:21 ` B, Jeevan 2026-03-12 10:48 ` Sebastian Brzezinka 2026-03-10 12:00 ` ✓ Xe.CI.BAT: success for tests/chamelium/audio: Fix resource leaks in audio tests (rev3) Patchwork 2026-03-10 12:39 ` ✓ i915.CI.BAT: " Patchwork 2026-03-10 15:11 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-03-10 20:49 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox