* [PATCH v1 0/2] tests/chamelium/audio: Fix resource leaks in audio tests
@ 2026-03-04 10:05 Mohammed Bilal
2026-03-04 10:05 ` [PATCH v1 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config Mohammed Bilal
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Mohammed Bilal @ 2026-03-04 10:05 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.
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 | 47 ++++++++++++++++++++-------
1 file changed, 36 insertions(+), 11 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v1 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config
2026-03-04 10:05 [PATCH v1 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal
@ 2026-03-04 10:05 ` Mohammed Bilal
2026-03-04 11:19 ` Sebastian Brzezinka
2026-03-04 10:05 ` [PATCH v1 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure Mohammed Bilal
` (4 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Mohammed Bilal @ 2026-03-04 10:05 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>
---
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] 11+ messages in thread
* [PATCH v1 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure
2026-03-04 10:05 [PATCH v1 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal
2026-03-04 10:05 ` [PATCH v1 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config Mohammed Bilal
@ 2026-03-04 10:05 ` Mohammed Bilal
2026-03-04 12:18 ` Sebastian Brzezinka
2026-03-05 3:28 ` ✓ i915.CI.BAT: success for tests/chamelium/audio: Fix resource leaks in audio tests Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Mohammed Bilal @ 2026-03-04 10:05 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.
Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com>
---
tests/chamelium/kms_chamelium_audio.c | 43 ++++++++++++++++++++-------
1 file changed, 33 insertions(+), 10 deletions(-)
diff --git a/tests/chamelium/kms_chamelium_audio.c b/tests/chamelium/kms_chamelium_audio.c
index 2967e3c50..41cbe92d9 100644
--- a/tests/chamelium/kms_chamelium_audio.c
+++ b/tests/chamelium/kms_chamelium_audio.c
@@ -426,9 +426,21 @@ 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);
+ /* Initialize heap pointers to NULL so the cleanup path can safely
+ * free them regardless of where an error occurs.
+ */
+ channel = NULL;
+ buf = NULL;
+ recv = NULL;
+ recv_len = 0;
+ success = false;
+
+ 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 +459,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 +468,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("Unexpected buffer length: %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 +505,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 +604,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 +613,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 +683,7 @@ static bool test_audio_flatline(struct audio_state *state)
}
}
+out:
success = amp_success && align_success;
audio_state_stop(state, success);
--
2.48.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH v1 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config
2026-03-04 10:05 ` [PATCH v1 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config Mohammed Bilal
@ 2026-03-04 11:19 ` Sebastian Brzezinka
0 siblings, 0 replies; 11+ messages in thread
From: Sebastian Brzezinka @ 2026-03-04 11:19 UTC (permalink / raw)
To: Mohammed Bilal, igt-dev; +Cc: jeevan.b, kunal1.joshi, sebastian.brzezinka
Hi Mohammed,
On Wed Mar 4, 2026 at 11:05 AM CET, Mohammed Bilal wrote:
> 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>
> ---
This is a clean fix, I have no concerns.
Reviewed-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
--
Best regards,
Sebastian
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v1 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure
2026-03-04 10:05 ` [PATCH v1 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure Mohammed Bilal
@ 2026-03-04 12:18 ` Sebastian Brzezinka
2026-03-04 17:36 ` Bilal, Mohammed
0 siblings, 1 reply; 11+ messages in thread
From: Sebastian Brzezinka @ 2026-03-04 12:18 UTC (permalink / raw)
To: Mohammed Bilal, igt-dev; +Cc: jeevan.b, kunal1.joshi, sebastian.brzezinka
On Wed Mar 4, 2026 at 11:05 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.
>
> Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com>
> ---
> tests/chamelium/kms_chamelium_audio.c | 43 ++++++++++++++++++++-------
> 1 file changed, 33 insertions(+), 10 deletions(-)
>
> diff --git a/tests/chamelium/kms_chamelium_audio.c b/tests/chamelium/kms_chamelium_audio.c
> index 2967e3c50..41cbe92d9 100644
> --- a/tests/chamelium/kms_chamelium_audio.c
> +++ b/tests/chamelium/kms_chamelium_audio.c
> @@ -426,9 +426,21 @@ 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);
> + /* Initialize heap pointers to NULL so the cleanup path can safely
> + * free them regardless of where an error occurs.
> + */
> + channel = NULL;
> + buf = NULL;
> + recv = NULL;
> + recv_len = 0;
> + success = false;
It feels a bit messy to assign NULL here, it's cleaner at
declaration. Plus, we don't really need the goto logic for an input
check, the original assert was enough since it's just verifying the
function's parameters. Ideally, this whole block should be moved to the
beginning of the function, before any init.
> +
> + 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 +459,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 +468,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) {
I see why you're using goto for the cleanup path, but let's tweak the
condition so it’s easier to read at a glance basically, failing
if buf_len exceeds buf_cap. We could also handle this by checking the
divisibility of recv_len and buf_cap instead.
--
Best regards,
Sebastian
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH v1 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure
2026-03-04 12:18 ` Sebastian Brzezinka
@ 2026-03-04 17:36 ` Bilal, Mohammed
2026-03-05 6:55 ` Sebastian Brzezinka
0 siblings, 1 reply; 11+ messages in thread
From: Bilal, Mohammed @ 2026-03-04 17:36 UTC (permalink / raw)
To: Brzezinka, Sebastian, igt-dev@lists.freedesktop.org
Cc: B, Jeevan, Joshi, Kunal1
Hi Sebastien ,
> -----Original Message-----
> From: Brzezinka, Sebastian <sebastian.brzezinka@intel.com>
> Sent: 04 March 2026 17:48
> To: Bilal, Mohammed <mohammed.bilal@intel.com>; igt-
> dev@lists.freedesktop.org
> Cc: B, Jeevan <jeevan.b@intel.com>; Joshi, Kunal1 <kunal1.joshi@intel.com>;
> Brzezinka, Sebastian <sebastian.brzezinka@intel.com>
> Subject: Re: [PATCH v1 2/2] tests/chamelium/audio: Fix resource leaks on
> assertion failure
>
> On Wed Mar 4, 2026 at 11:05 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.
> >
> > Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com>
> > ---
> > tests/chamelium/kms_chamelium_audio.c | 43
> > ++++++++++++++++++++-------
> > 1 file changed, 33 insertions(+), 10 deletions(-)
> >
> > diff --git a/tests/chamelium/kms_chamelium_audio.c
> > b/tests/chamelium/kms_chamelium_audio.c
> > index 2967e3c50..41cbe92d9 100644
> > --- a/tests/chamelium/kms_chamelium_audio.c
> > +++ b/tests/chamelium/kms_chamelium_audio.c
> > @@ -426,9 +426,21 @@ 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);
> > + /* Initialize heap pointers to NULL so the cleanup path can safely
> > + * free them regardless of where an error occurs.
> > + */
> > + channel = NULL;
> > + buf = NULL;
> > + recv = NULL;
> > + recv_len = 0;
> > + success = false;
> It feels a bit messy to assign NULL here, it's cleaner at declaration. Plus, we don't
> really need the goto logic for an input check, the original assert was enough since
> it's just verifying the function's parameters. Ideally, this whole block should be
> moved to the beginning of the function, before any init.
>
Thanks for the suggestion on moving NULL inits to declarations . I will address that in v2.
Regarding the capture rate check we can't move it before audio_state_start() because the capture rate is only available after audio playback begins. There's even a comment in audio_state_start() regarding this .
By the time we can check the rate, audio_state_start() has already launched a pthread and started the chamelium stream/capture. If we use igt_assert_f here and it fails, siglongjmp will skip audio_state_stop() leaving the pthread running and the stream/capture active. That's the exact resource leak this patch is fixing.
> > +
> > + 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 +459,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
> +468,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) {
> I see why you're using goto for the cleanup path, but let's tweak the condition so
> it’s easier to read at a glance basically, failing if buf_len exceeds buf_cap. We
> could also handle this by checking the divisibility of recv_len and buf_cap instead.
>
Good point . I'll change this to buf_len > buf_cap in v2 to make the overflow intent explicit. The buf_len < buf_cap case is already handled by the continue above, so by the time we reach this check only overflow is possible.
> --
> Best regards,
> Sebastian
Thanks ,
Mohammed Bilal
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/chamelium/audio: Fix resource leaks in audio tests
2026-03-04 10:05 [PATCH v1 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal
2026-03-04 10:05 ` [PATCH v1 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config Mohammed Bilal
2026-03-04 10:05 ` [PATCH v1 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure Mohammed Bilal
@ 2026-03-05 3:28 ` Patchwork
2026-03-05 11:13 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-03-05 3:28 UTC (permalink / raw)
To: Bilal, Mohammed; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10977 bytes --]
== Series Details ==
Series: tests/chamelium/audio: Fix resource leaks in audio tests
URL : https://patchwork.freedesktop.org/series/162565/
State : success
== Summary ==
CI Bug Log - changes from IGT_8777 -> IGTPW_14665
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/index.html
Participating hosts (39 -> 40)
------------------------------
Additional (2): fi-pnv-d510 bat-adls-6
Missing (1): bat-dg2-13
Known issues
------------
Here are the changes found in IGTPW_14665 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_busy@busy:
- bat-dg2-8: [PASS][1] -> [ABORT][2] ([i915#15759]) +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-dg2-8/igt@gem_busy@busy.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-dg2-8/igt@gem_busy@busy.html
* igt@gem_exec_create@basic@lmem0:
- bat-dg1-7: [PASS][3] -> [ABORT][4] ([i915#15759]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-dg1-7/igt@gem_exec_create@basic@lmem0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-dg1-7/igt@gem_exec_create@basic@lmem0.html
* igt@gem_lmem_swapping@basic:
- bat-atsm-1: NOTRUN -> [ABORT][5] ([i915#15759]) +1 other test abort
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][8] ([i915#4079])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#4077]) +4 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#15657])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@gem_tiled_pread_basic@basic.html
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#15656])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#7707]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#6077]) +37 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][17] ([i915#4103]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][18] ([i915#6078]) +22 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#3840])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-atsm-1: NOTRUN -> [SKIP][20] ([i915#6093]) +4 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@kms_force_connector_basic@force-load-detect.html
- bat-adls-6: NOTRUN -> [SKIP][21]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-atsm-1: NOTRUN -> [SKIP][22] ([i915#1836]) +6 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][23] ([i915#5354])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][24] ([i915#7357])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][25] +35 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
- bat-adls-6: NOTRUN -> [SKIP][26] ([i915#1072] / [i915#9732]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][27] ([i915#6094])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
- bat-adls-6: NOTRUN -> [SKIP][28] ([i915#3555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][29] ([i915#3291]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-adls-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][30] +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_exec_create@basic@lmem0:
- bat-atsm-1: [ABORT][31] ([i915#15759]) -> [PASS][32] +1 other test pass
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-atsm-1/igt@gem_exec_create@basic@lmem0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-atsm-1/igt@gem_exec_create@basic@lmem0.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [DMESG-WARN][33] ([i915#13735]) -> [PASS][34] +79 other tests pass
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][35] ([i915#12061]) -> [PASS][36] +1 other test pass
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [DMESG-WARN][37] ([i915#13735] / [i915#180]) -> [PASS][38] +53 other tests pass
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8777/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6094
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7357]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7357
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8777 -> IGTPW_14665
* Linux: CI_DRM_18075 -> CI_DRM_18094
CI-20190529: 20190529
CI_DRM_18075: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18094: d7689f077339984fa4c23c972f591ee318b3c56f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14665: c70d99385998deb86f3c7c1a9114d4048d58778f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/index.html
[-- Attachment #2: Type: text/html, Size: 12748 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v1 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure
2026-03-04 17:36 ` Bilal, Mohammed
@ 2026-03-05 6:55 ` Sebastian Brzezinka
0 siblings, 0 replies; 11+ messages in thread
From: Sebastian Brzezinka @ 2026-03-05 6:55 UTC (permalink / raw)
To: Bilal, Mohammed, Brzezinka, Sebastian,
igt-dev@lists.freedesktop.org
Cc: B, Jeevan, Joshi, Kunal1
On Wed Mar 4, 2026 at 6:36 PM CET, Mohammed Bilal wrote:
> Hi Sebastien ,
>
>> -----Original Message-----
>> From: Brzezinka, Sebastian <sebastian.brzezinka@intel.com>
>> Sent: 04 March 2026 17:48
>> To: Bilal, Mohammed <mohammed.bilal@intel.com>; igt-
>> dev@lists.freedesktop.org
>> Cc: B, Jeevan <jeevan.b@intel.com>; Joshi, Kunal1 <kunal1.joshi@intel.com>;
>> Brzezinka, Sebastian <sebastian.brzezinka@intel.com>
>> Subject: Re: [PATCH v1 2/2] tests/chamelium/audio: Fix resource leaks on
>> assertion failure
>>
>> On Wed Mar 4, 2026 at 11:05 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.
>> >
>> > Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com>
>> > ---
>> > tests/chamelium/kms_chamelium_audio.c | 43
>> > ++++++++++++++++++++-------
>> > 1 file changed, 33 insertions(+), 10 deletions(-)
>> >
>> > diff --git a/tests/chamelium/kms_chamelium_audio.c
>> > b/tests/chamelium/kms_chamelium_audio.c
>> > index 2967e3c50..41cbe92d9 100644
>> > --- a/tests/chamelium/kms_chamelium_audio.c
>> > +++ b/tests/chamelium/kms_chamelium_audio.c
>> > @@ -426,9 +426,21 @@ 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);
>> > + /* Initialize heap pointers to NULL so the cleanup path can safely
>> > + * free them regardless of where an error occurs.
>> > + */
>> > + channel = NULL;
>> > + buf = NULL;
>> > + recv = NULL;
>> > + recv_len = 0;
>> > + success = false;
>> It feels a bit messy to assign NULL here, it's cleaner at declaration. Plus, we don't
>> really need the goto logic for an input check, the original assert was enough since
>> it's just verifying the function's parameters. Ideally, this whole block should be
>> moved to the beginning of the function, before any init.
>>
>
> Thanks for the suggestion on moving NULL inits to declarations . I will address that in v2.
>
> Regarding the capture rate check we can't move it before audio_state_start() because the capture rate is only available after audio playback begins. There's even a comment in audio_state_start() regarding this .
>
> By the time we can check the rate, audio_state_start() has already launched a pthread and started the chamelium stream/capture. If we use igt_assert_f here and it fails, siglongjmp will skip audio_state_stop() leaving the pthread running and the stream/capture active. That's the exact resource leak this patch is fixing.
You’re absolutely right. I totally missed audio_state_start().
>
>> > +
>> > + 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 +459,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
>> +468,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) {
>> I see why you're using goto for the cleanup path, but let's tweak the condition so
>> it’s easier to read at a glance basically, failing if buf_len exceeds buf_cap. We
>> could also handle this by checking the divisibility of recv_len and buf_cap instead.
>>
>
> Good point . I'll change this to buf_len > buf_cap in v2 to make the overflow intent explicit. The buf_len < buf_cap case is already handled by the continue above, so by the time we reach this check only overflow is possible.
>
>> --
>> Best regards,
>> Sebastian
>
> Thanks ,
> Mohammed Bilal
--
Best regards,
Sebastian
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/chamelium/audio: Fix resource leaks in audio tests
2026-03-04 10:05 [PATCH v1 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal
` (2 preceding siblings ...)
2026-03-05 3:28 ` ✓ i915.CI.BAT: success for tests/chamelium/audio: Fix resource leaks in audio tests Patchwork
@ 2026-03-05 11:13 ` Patchwork
2026-03-05 12:31 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-06 3:52 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-03-05 11:13 UTC (permalink / raw)
To: Mohammed Bilal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7180 bytes --]
== Series Details ==
Series: tests/chamelium/audio: Fix resource leaks in audio tests
URL : https://patchwork.freedesktop.org/series/162565/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8777_BAT -> XEIGTPW_14665_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 14)
------------------------------
Additional (1): bat-atsm-2
Known issues
------------
Here are the changes found in XEIGTPW_14665_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- bat-atsm-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
- bat-atsm-2: NOTRUN -> [SKIP][2] ([i915#6077]) +30 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-atsm-2: NOTRUN -> [SKIP][3] ([Intel XE#1024] / [Intel XE#782] / [Intel XE#947]) +5 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#1024] / [Intel XE#784] / [Intel XE#947])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@kms_dsc@dsc-basic.html
* igt@kms_frontbuffer_tracking@basic:
- bat-atsm-2: NOTRUN -> [SKIP][5] ([Intel XE#1024] / [Intel XE#783] / [Intel XE#947])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_hdmi_inject@inject-audio:
- bat-atsm-2: NOTRUN -> [SKIP][6] ([Intel XE#540]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-atsm-2: NOTRUN -> [SKIP][7] ([Intel XE#829] / [i915#1836]) +6 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_prop_blob@basic:
- bat-atsm-2: NOTRUN -> [SKIP][8] ([Intel XE#780])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr-primary-page-flip:
- bat-atsm-2: NOTRUN -> [SKIP][9] ([Intel XE#1024] / [Intel XE#947]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@kms_psr@psr-primary-page-flip.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- bat-atsm-2: NOTRUN -> [SKIP][10] ([Intel XE#288]) +32 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_huc_copy@huc_copy:
- bat-atsm-2: NOTRUN -> [SKIP][11] ([Intel XE#255])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#2229])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_pat@pat-index-xe2:
- bat-atsm-2: NOTRUN -> [SKIP][13] ([Intel XE#977])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-atsm-2: NOTRUN -> [SKIP][14] ([Intel XE#2838] / [Intel XE#979])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- bat-atsm-2: NOTRUN -> [SKIP][15] ([Intel XE#979])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-atsm-2/igt@xe_pat@pat-index-xelpg.html
#### Possible fixes ####
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-bmg-2: [DMESG-WARN][16] ([Intel XE#7433]) -> [PASS][17] +3 other tests pass
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
- bat-bmg-1: [DMESG-WARN][18] ([Intel XE#7433]) -> [PASS][19] +3 other tests pass
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@xe_module_load@load:
- bat-bmg-3: [DMESG-WARN][20] ([Intel XE#7433]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/bat-bmg-3/igt@xe_module_load@load.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/bat-bmg-3/igt@xe_module_load@load.html
[Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#7433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7433
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* IGT: IGT_8777 -> IGTPW_14665
* Linux: xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c -> xe-4657-de9130630d2dc4c0f650333605a14d475ee788e1
IGTPW_14665: c70d99385998deb86f3c7c1a9114d4048d58778f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c
xe-4657-de9130630d2dc4c0f650333605a14d475ee788e1: de9130630d2dc4c0f650333605a14d475ee788e1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/index.html
[-- Attachment #2: Type: text/html, Size: 8769 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/chamelium/audio: Fix resource leaks in audio tests
2026-03-04 10:05 [PATCH v1 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal
` (3 preceding siblings ...)
2026-03-05 11:13 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-05 12:31 ` Patchwork
2026-03-06 3:52 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-03-05 12:31 UTC (permalink / raw)
To: Mohammed Bilal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 93974 bytes --]
== Series Details ==
Series: tests/chamelium/audio: Fix resource leaks in audio tests
URL : https://patchwork.freedesktop.org/series/162565/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8777_FULL -> XEIGTPW_14665_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14665_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14665_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_14665_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_oa@mmio-triggered-reports@oag-0:
- shard-bmg: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_oa@mmio-triggered-reports@oag-0.html
Known issues
------------
Here are the changes found in XEIGTPW_14665_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2370]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3658] / [Intel XE#7360])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +18 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#7059] / [Intel XE#7085]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2328] / [Intel XE#7367])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1467] / [Intel XE#7367])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#610] / [Intel XE#7387]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +52 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#607] / [Intel XE#7361])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367] / [Intel XE#7354]) +9 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#367] / [Intel XE#7354])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) +9 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2652]) +52 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3432])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +76 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2724] / [Intel XE#7449]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2325] / [Intel XE#7358]) +8 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#306] / [Intel XE#7358])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-3/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252]) +47 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#6507])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color@ctm-negative:
- shard-bmg: NOTRUN -> [INCOMPLETE][25] ([Intel XE#2594])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_color@ctm-negative.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2341]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2390] / [Intel XE#6974]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#6974]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#6973])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-5/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +14 other tests fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#3304] / [Intel XE#7374]) +2 other tests fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_content_protection@lic-type-0@pipe-a-dp-1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][32] ([Intel XE#6707] / [Intel XE#7439]) +3 other tests fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2320]) +22 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-bmg: NOTRUN -> [FAIL][34] ([Intel XE#6747]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2321] / [Intel XE#7355])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2321] / [Intel XE#7355]) +8 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][37] ([Intel XE#5354])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2286] / [Intel XE#6035]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4210] / [Intel XE#7467])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1508]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1340] / [Intel XE#7435])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4354] / [Intel XE#5882])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4354] / [Intel XE#7386])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4354] / [Intel XE#5870])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4331] / [Intel XE#7227])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2244]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4422] / [Intel XE#7442]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#4156] / [Intel XE#7425]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6126] / [Intel XE#776])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2372] / [Intel XE#7359])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#701] / [Intel XE#7359])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2373] / [Intel XE#7448])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1138] / [Intel XE#7344])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2375])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2374] / [Intel XE#6127])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2374] / [Intel XE#6128])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1421]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#301]) +1 other test fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7178] / [Intel XE#7349]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7178] / [Intel XE#7351]) +18 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#7178] / [Intel XE#7351])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7179]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7061] / [Intel XE#7356]) +20 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4141]) +67 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2352] / [Intel XE#7399]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#6312])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2311]) +150 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2350] / [Intel XE#7503])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2313]) +152 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#656]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7308])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#3374] / [Intel XE#3544])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#6901]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4298] / [Intel XE#5873])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6911] / [Intel XE#7378])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6911] / [Intel XE#7466]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2501] / [Intel XE#5852])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2486])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#6912] / [Intel XE#7375])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#7130]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#7283]) +19 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#7283])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2393]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#5021] / [Intel XE#7377]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#5020] / [Intel XE#7348]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2763] / [Intel XE#6886]) +28 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#7376] / [Intel XE#870]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2938] / [Intel XE#7376])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2391] / [Intel XE#6927])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2392] / [Intel XE#6927]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2505] / [Intel XE#7447])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2499])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#6814] / [Intel XE#7428])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#1489]) +37 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2387] / [Intel XE#7429]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1406] / [Intel XE#7345])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-2/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-primary-render@edp-1:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1406] / [Intel XE#4609])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-2/igt@kms_psr@fbc-psr2-primary-render@edp-1.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2234] / [Intel XE#2850]) +65 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2234])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1406] / [Intel XE#2414])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2330] / [Intel XE#5813]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +10 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2413]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1435]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#6503]) +11 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2426] / [Intel XE#5848])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#1499]) +8 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2168] / [Intel XE#7444])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][113] ([Intel XE#6390] / [Intel XE#7461]) +1 other test fail
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-4/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#6599]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@xe_compute@ccs-mode-basic.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#6010] / [Intel XE#7317] / [Intel XE#7455])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-8/igt@xe_configfs@survivability-mode.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#4837]) +40 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@sysfs-toggle:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#4837]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-5/igt@xe_eudebug@sysfs-toggle.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#6665])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_online@pagefault-write:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#4837] / [Intel XE#6665])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-6/igt@xe_eudebug_online@pagefault-write.html
* igt@xe_eudebug_online@pagefault-write-stress:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#6665] / [Intel XE#6681])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@xe_eudebug_online@pagefault-write-stress.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#4837] / [Intel XE#6665]) +25 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-cm-threads-large:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-4/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][125] ([Intel XE#6321])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#7140]) +8 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_balancer@once-parallel-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#7482]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-6/igt@xe_exec_balancer@once-parallel-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1392]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2322] / [Intel XE#7372]) +43 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-prefetch:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#7136]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-4/igt@xe_exec_fault_mode@once-multi-queue-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#7136]) +61 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#6874]) +5 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-3/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#6874]) +153 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][134] ([Intel XE#7098])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_threads@threads-many-queues:
- shard-bmg: NOTRUN -> [FAIL][135] ([Intel XE#7166])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#7138]) +47 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#7138]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: NOTRUN -> [ABORT][138] ([Intel XE#5466] / [Intel XE#6652])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2229])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2833])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_media_fill@media-fill.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#6964]) +17 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_oa@mmio-triggered-reports@oam-2:
- shard-bmg: NOTRUN -> [FAIL][143] ([Intel XE#7522]) +5 other tests fail
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_oa@mmio-triggered-reports@oam-2.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-8/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2245])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2236])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#5694] / [Intel XE#7370])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2284] / [Intel XE#7370]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#584] / [Intel XE#7369])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-3/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#4733] / [Intel XE#7417]) +12 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#944]) +11 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#944])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-1/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-bmg: [SKIP][157] ([Intel XE#6779]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@core_hotunplug@hotrebind-lateclose.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@core_hotunplug@hotrebind-lateclose.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [SKIP][159] ([Intel XE#5177] / [Intel XE#6703]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][161] ([Intel XE#6054] / [Intel XE#7509]) -> [PASS][162] +3 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][163] ([Intel XE#7340]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-bmg: [SKIP][165] ([Intel XE#6693]) -> [PASS][166] +1 other test pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_pm_rpm@basic-pci-d3-state.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
- shard-bmg: [SKIP][167] ([Intel XE#6703]) -> [PASS][168] +269 other tests pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][169] ([Intel XE#5625]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_module_load@force-load:
- shard-bmg: [FAIL][171] -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@force-load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_module_load@force-load.html
* igt@xe_vm@large-split-binds-536870912:
- shard-bmg: [SKIP][173] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][174] +2 other tests pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_vm@large-split-binds-536870912.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_vm@large-split-binds-536870912.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: [SKIP][175] ([Intel XE#6703]) -> [SKIP][176] ([Intel XE#2233])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][177] ([Intel XE#6703]) -> [SKIP][178] ([Intel XE#2327]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: [SKIP][179] ([Intel XE#6703]) -> [SKIP][180] ([Intel XE#1124]) +4 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-bmg: [SKIP][181] ([Intel XE#6703]) -> [SKIP][182] ([Intel XE#367] / [Intel XE#7354]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][183] ([Intel XE#6703]) -> [SKIP][184] ([Intel XE#2887]) +5 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][185] ([Intel XE#6703]) -> [SKIP][186] ([Intel XE#2652])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: [SKIP][187] ([Intel XE#6703]) -> [SKIP][188] ([Intel XE#2724] / [Intel XE#7449])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_cdclk@plane-scaling.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: [SKIP][189] ([Intel XE#6703]) -> [SKIP][190] ([Intel XE#2252]) +5 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_chamelium_audio@hdmi-audio-edid.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: [SKIP][191] ([Intel XE#6703]) -> [SKIP][192] ([Intel XE#2325] / [Intel XE#7358])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_chamelium_color@gamma.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_chamelium_color@gamma.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][193] ([Intel XE#6703]) -> [SKIP][194] ([Intel XE#2390] / [Intel XE#6974])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: [SKIP][195] ([Intel XE#6703]) -> [SKIP][196] ([Intel XE#2321] / [Intel XE#7355])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: [SKIP][197] ([Intel XE#6703]) -> [SKIP][198] ([Intel XE#2320]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-lnl: [SKIP][199] ([Intel XE#4354] / [Intel XE#7473]) -> [SKIP][200] ([Intel XE#4354] / [Intel XE#5870])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-7/igt@kms_dp_link_training@uhbr-sst.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-5/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: [SKIP][201] ([Intel XE#4294] / [Intel XE#7472]) -> [SKIP][202] ([Intel XE#4294] / [Intel XE#7477])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#2244])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_dsc@dsc-with-formats.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: [SKIP][205] ([Intel XE#6703]) -> [SKIP][206] ([Intel XE#4422] / [Intel XE#7442])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: [SKIP][207] ([Intel XE#6703]) -> [SKIP][208] ([Intel XE#6126] / [Intel XE#776])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_fbcon_fbt@psr-suspend.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: [SKIP][209] ([Intel XE#702] / [Intel XE#7462]) -> [SKIP][210] ([Intel XE#702] / [Intel XE#7344])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-6/igt@kms_feature_discovery@display-2x.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: [SKIP][211] ([Intel XE#1137] / [Intel XE#7438]) -> [SKIP][212] ([Intel XE#1137] / [Intel XE#2375])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-6/igt@kms_feature_discovery@dp-mst.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-bmg: [SKIP][213] ([Intel XE#6703]) -> [SKIP][214] ([Intel XE#7178] / [Intel XE#7351])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][215] ([Intel XE#6703]) -> [SKIP][216] ([Intel XE#2311]) +11 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][217] ([Intel XE#6703]) -> [SKIP][218] ([Intel XE#4141]) +10 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
- shard-bmg: [SKIP][219] ([Intel XE#6703]) -> [SKIP][220] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][221] ([Intel XE#6703]) -> [SKIP][222] ([Intel XE#2313]) +9 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-lnl: [SKIP][223] ([Intel XE#7173] / [Intel XE#7294] / [Intel XE#7460]) -> [SKIP][224] ([Intel XE#7173] / [Intel XE#7294])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: [SKIP][225] ([Intel XE#356] / [Intel XE#7465]) -> [SKIP][226] ([Intel XE#356] / [Intel XE#5852])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: [SKIP][227] ([Intel XE#6703]) -> [SKIP][228] ([Intel XE#2486])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][229] ([Intel XE#6703]) -> [SKIP][230] ([Intel XE#7283]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: [SKIP][231] ([Intel XE#4596] / [Intel XE#7458]) -> [SKIP][232] ([Intel XE#4596] / [Intel XE#5854]) +4 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-none.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-3/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: [SKIP][233] ([Intel XE#6703]) -> [SKIP][234] ([Intel XE#2763] / [Intel XE#6886])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][235] ([Intel XE#6703]) -> [SKIP][236] ([Intel XE#7376] / [Intel XE#870])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_pm_backlight@basic-brightness.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: [SKIP][237] ([Intel XE#7339] / [Intel XE#7506]) -> [SKIP][238] ([Intel XE#7339])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: [SKIP][239] ([Intel XE#1131] / [Intel XE#7451]) -> [SKIP][240] ([Intel XE#1131])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-2/igt@kms_pm_dc@dc5-dpms-negative.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-6/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][241] ([Intel XE#2029] / [Intel XE#7314] / [Intel XE#7395]) -> [FAIL][242] ([Intel XE#2029] / [Intel XE#7395])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: [SKIP][243] ([Intel XE#6693]) -> [SKIP][244] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-lnl: [SKIP][245] ([Intel XE#6813] / [Intel XE#7470]) -> [SKIP][246] ([Intel XE#6813])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@kms_pm_rpm@package-g7.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-8/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: [SKIP][247] ([Intel XE#2893]) -> [SKIP][248] ([Intel XE#2893] / [Intel XE#7304])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: [SKIP][249] ([Intel XE#2893] / [Intel XE#4608]) -> [SKIP][250] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +10 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
- shard-lnl: [SKIP][251] ([Intel XE#4608]) -> [SKIP][252] ([Intel XE#4608] / [Intel XE#7304]) +10 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][253] ([Intel XE#6703]) -> [SKIP][254] ([Intel XE#1489]) +4 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr-suspend:
- shard-bmg: [SKIP][255] ([Intel XE#6703]) -> [SKIP][256] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_psr@fbc-psr-suspend.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: [SKIP][257] ([Intel XE#6703]) -> [SKIP][258] ([Intel XE#6503]) +2 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_sharpness_filter@filter-basic.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@kms_sharpness_filter@filter-basic.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: [SKIP][259] ([Intel XE#330] / [Intel XE#7440]) -> [SKIP][260] ([Intel XE#330] / [Intel XE#5857])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-lnl-5/igt@kms_tv_load_detect@load-detect.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-lnl-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-bmg: [SKIP][261] ([Intel XE#6703]) -> [SKIP][262] ([Intel XE#2168] / [Intel XE#7444])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@kms_vrr@cmrr.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@kms_vrr@cmrr.html
* igt@xe_eudebug@basic-vm-bind-discovery:
- shard-bmg: [SKIP][263] ([Intel XE#6703]) -> [SKIP][264] ([Intel XE#4837]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-discovery.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-discovery.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: [SKIP][265] ([Intel XE#6703]) -> [SKIP][266] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: [SKIP][267] ([Intel XE#6703]) -> [SKIP][268] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: [SKIP][269] ([Intel XE#6703]) -> [SKIP][270] ([Intel XE#7136]) +5 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem:
- shard-bmg: [SKIP][271] ([Intel XE#6703]) -> [SKIP][272] ([Intel XE#6874]) +13 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind:
- shard-bmg: [SKIP][273] ([Intel XE#6703]) -> [SKIP][274] ([Intel XE#7138]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html
* igt@xe_module_load@load:
- shard-bmg: ([DMESG-WARN][275], [DMESG-WARN][276], [DMESG-WARN][277], [DMESG-WARN][278], [DMESG-WARN][279], [DMESG-WARN][280], [DMESG-WARN][281], [DMESG-WARN][282], [DMESG-WARN][283], [DMESG-WARN][284], [DMESG-WARN][285], [DMESG-WARN][286], [DMESG-WARN][287], [DMESG-WARN][288], [DMESG-WARN][289], [DMESG-WARN][290], [DMESG-WARN][291], [DMESG-WARN][292], [PASS][293], [PASS][294], [DMESG-WARN][295], [DMESG-WARN][296], [DMESG-WARN][297], [DMESG-WARN][298], [DMESG-WARN][299]) ([Intel XE#7433]) -> ([PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [SKIP][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325]) ([Intel XE#2457] / [Intel XE#7405])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-1/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-7/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-9/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-2/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-8/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-8/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-6/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-4/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-5/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-3/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-2/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-8/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-4/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-5/igt@xe_module_load@load.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: [SKIP][326] ([Intel XE#6703]) -> [SKIP][327] ([Intel XE#1420])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_pat@pat-index-xehpc.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: [SKIP][328] ([Intel XE#6703]) -> [SKIP][329] ([Intel XE#4733] / [Intel XE#7417])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-6/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: [SKIP][330] ([Intel XE#6703]) -> [SKIP][331] ([Intel XE#944])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8777/shard-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/shard-bmg-7/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[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#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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5852]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5852
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6747
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[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#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[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#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
[Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7314
[Intel XE#7317]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7317
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[Intel XE#7339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7339
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#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#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[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#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[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#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7433
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7438]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7438
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7440
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7451]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7451
[Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453
[Intel XE#7455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7455
[Intel XE#7458]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7458
[Intel XE#7460]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7460
[Intel XE#7461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7461
[Intel XE#7462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7462
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7465
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7470
[Intel XE#7472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7472
[Intel XE#7473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7473
[Intel XE#7477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7477
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7506
[Intel XE#7509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7509
[Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
[Intel XE#7522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7522
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8777 -> IGTPW_14665
* Linux: xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c -> xe-4657-de9130630d2dc4c0f650333605a14d475ee788e1
IGTPW_14665: c70d99385998deb86f3c7c1a9114d4048d58778f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4645-3fe1f7a93adf8e03fb044eb57b63394afe6e139c: 3fe1f7a93adf8e03fb044eb57b63394afe6e139c
xe-4657-de9130630d2dc4c0f650333605a14d475ee788e1: de9130630d2dc4c0f650333605a14d475ee788e1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14665/index.html
[-- Attachment #2: Type: text/html, Size: 111129 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for tests/chamelium/audio: Fix resource leaks in audio tests
2026-03-04 10:05 [PATCH v1 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal
` (4 preceding siblings ...)
2026-03-05 12:31 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-03-06 3:52 ` Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-03-06 3:52 UTC (permalink / raw)
To: Mohammed Bilal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 138326 bytes --]
== Series Details ==
Series: tests/chamelium/audio: Fix resource leaks in audio tests
URL : https://patchwork.freedesktop.org/series/162565/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18094_full -> IGTPW_14665_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14665_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14665_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_14665/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14665_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-tglu-1: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-linear-to-4:
- shard-dg2: NOTRUN -> [ABORT][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-linear-to-4.html
Known issues
------------
Here are the changes found in IGTPW_14665_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#3281]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#3281]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#7697])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#3936])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#3936])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-14/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#3936])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-3/igt@gem_busy@semaphore.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4873])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-1/igt@gem_caching@writes.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][14] -> [INCOMPLETE][15] ([i915#13356])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#8562])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][18] -> [FAIL][19] ([i915#9561]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg2-1/igt@gem_ctx_freq@sysfs@gt0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-dg2: NOTRUN -> [ABORT][20] ([i915#15759]) +1 other test abort
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-3/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][21] ([i915#13356]) +1 other test incomplete
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-rkl: NOTRUN -> [DMESG-WARN][25] ([i915#13363])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@gem_eio@kms.html
- shard-tglu: [PASS][26] -> [ABORT][27] ([i915#13363])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-tglu-3/igt@gem_eio@kms.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-6/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4771])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@gem_exec_balancer@parallel.html
- shard-tglu: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-7/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#4525]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][33] ([i915#11713])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-2/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#6334]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#6334]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#6334]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-4/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_create@madvise:
- shard-dg1: NOTRUN -> [ABORT][40] ([i915#15759]) +2 other tests abort
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-17/igt@gem_exec_create@madvise.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@gem_exec_fence@submit3.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4812]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-3/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-1/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +14 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#14544] / [i915#3281]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +13 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4812]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#7276])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: NOTRUN -> [INCOMPLETE][49] ([i915#13356]) +1 other test incomplete
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-3/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4860])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#4613] / [i915#7582])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613] / [i915#7582])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +6 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#14544] / [i915#4613])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@gem_lmem_swapping@verify-random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-4/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4077]) +12 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
* igt@gem_mmap_wc@bad-size:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@gem_mmap_wc@bad-size.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#14544] / [i915#3282])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-16/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][70] ([i915#2658])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-snb4/igt@gem_pwrite@basic-exhaustion.html
- shard-tglu: NOTRUN -> [WARN][71] ([i915#2658])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#13398])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-glk11: NOTRUN -> [SKIP][74] +163 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +6 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-2/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [PASS][79] -> [INCOMPLETE][80] ([i915#13809])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-7/igt@gem_softpin@noreloc-s3.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#3297]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3281] / [i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-8/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#14544] / [i915#2527])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-without-end:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@gen9_exec_parse@bb-start-cmd.html
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-4/igt@gen9_exec_parse@bb-start-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-7/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#14123])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-7/igt@i915_drm_fdinfo@all-busy-check-all.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#14118])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#13786])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@fault-injection:
- shard-mtlp: NOTRUN -> [ABORT][98] ([i915#15342] / [i915#15481])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-4/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-mtlp: NOTRUN -> [ABORT][99] ([i915#15481])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-4/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-mtlp: NOTRUN -> [DMESG-WARN][100] ([i915#15342])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-4/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [PASS][101] -> [DMESG-WARN][102] ([i915#13029] / [i915#14545])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-17/igt@i915_module_load@reload-no-display.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-17/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#8399])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#6245])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu-1: NOTRUN -> [SKIP][105] +23 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#5723])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-12/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#5723])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-5/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live:
- shard-mtlp: [PASS][108] -> [DMESG-FAIL][109] ([i915#12061] / [i915#15560])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-mtlp-2/igt@i915_selftest@live.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][110] -> [DMESG-FAIL][111] ([i915#12061])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@debugfs-reader:
- shard-glk11: NOTRUN -> [INCOMPLETE][112] ([i915#4817])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk11/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][113] -> [INCOMPLETE][114] ([i915#4817])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-5/igt@i915_suspend@fence-restore-untiled.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][115] ([i915#4817]) +1 other test incomplete
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk3/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#4212])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4212])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-14/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#5190]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-glk: [PASS][120] -> [FAIL][121] ([i915#14888]) +1 other test fail
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286]) +6 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#5286]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5286])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#5286]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][128] +8 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-2/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#3828]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#3638]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3638]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-19/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#14544] / [i915#3638]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][133] -> [FAIL][134] ([i915#15733] / [i915#5138]) +1 other test fail
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-mtlp-3/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6187])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][136] +30 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5190]) +12 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-17/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6095]) +24 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#12313])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#12313]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#6095]) +141 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#14544] / [i915#6095]) +9 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#6095]) +39 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +87 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +69 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/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-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#12805])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#12805])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/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: [PASS][151] -> [INCOMPLETE][152] ([i915#15582])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#14098] / [i915#6095]) +45 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][154] ([i915#15582]) +1 other test incomplete
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#12313])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#6095]) +36 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#12313]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#6095]) +44 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][159] +363 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#3742])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#3742])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +11 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +6 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +9 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#12655] / [i915#3555])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_color@deep-color.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#9979])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-4/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#6944])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#9424])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-7/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#15330] / [i915#3116] / [i915#3299])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#15330])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#15330])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#7118] / [i915#9424])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@kms_content_protection@legacy.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@kms_content_protection@legacy.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#7116] / [i915#9424])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-12/igt@kms_content_protection@legacy.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-3/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6944] / [i915#9424])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-8/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#6944])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#3555]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-dg1: [PASS][183] -> [ABORT][184] ([i915#15759]) +5 other tests abort
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: NOTRUN -> [FAIL][185] ([i915#13566]) +7 other tests fail
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
- shard-rkl: [PASS][186] -> [FAIL][187] ([i915#13566])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#13049]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#13049] / [i915#14544])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8814]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#13049])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-19/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#13049]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: NOTRUN -> [FAIL][193] ([i915#13566]) +3 other tests fail
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#13049]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#3555]) +4 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3555]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8814])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#4103]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#4103])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#4103] / [i915#4213])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#14544]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9809]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#13046] / [i915#5354]) +5 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#9067])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#9067])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#9067])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#9067])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#9067])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#4103])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#9833])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#1769] / [i915#3555] / [i915#3804])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#3804])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#8812])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3840])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-7/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#1839])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-3/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#1839])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@kms_feature_discovery@display-3x.html
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#1839])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#1839])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-14/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1839])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-6/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#658])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#9934]) +11 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3637] / [i915#9934]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3637] / [i915#9934]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#9934])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#8381])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#9934]) +3 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-18/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][232] ([i915#12745] / [i915#4839])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk10/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk10: NOTRUN -> [INCOMPLETE][233] ([i915#4839])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk10/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#9934]) +5 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#9934]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#15643]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#15643]) +4 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#15643]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#15643])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#15643])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#15643]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#14544] / [i915#15643])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#15643] / [i915#5190]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-linear-to-x:
- shard-dg2: NOTRUN -> [INCOMPLETE][244] ([i915#15759])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-hdmi-a-1-linear-to-x.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#5354]) +27 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#1825]) +36 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#8708]) +4 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#10055]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#15102]) +7 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/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-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15104]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#15102]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#15102])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#15102] / [i915#3458]) +20 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#14544] / [i915#15102] / [i915#3023])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#15102] / [i915#3023]) +22 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#15102] / [i915#3458]) +10 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][257] +15 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#8708]) +16 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#14544] / [i915#1825]) +2 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#1825]) +10 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#10055]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#14544] / [i915#15102])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#8708]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#15102]) +10 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#15102]) +23 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#12713])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#15458])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15459])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#15459])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#6301])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-5/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#6301])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-12/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][275] +15 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#15709]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#15709]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-19/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#15608]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-3:
- shard-dg2: [PASS][279] -> [ABORT][280] ([i915#15759]) +4 other tests abort
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg2-7/igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-3.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-1/igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-3.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#15709]) +4 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#15709]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#15608]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-19/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#15608]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#15608]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#15709]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#15709]) +3 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][288] ([i915#13026]) +1 other test incomplete
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk10: NOTRUN -> [FAIL][289] ([i915#10647] / [i915#12169])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][290] ([i915#10647]) +1 other test fail
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][291] ([i915#10647] / [i915#12169])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][292] ([i915#10647]) +1 other test fail
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_cursor@primary@pipe-c-edp-1-size-128:
- shard-mtlp: [PASS][293] -> [FAIL][294] ([i915#15733]) +2 other tests fail
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-mtlp-2/igt@kms_plane_cursor@primary@pipe-c-edp-1-size-128.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-4/igt@kms_plane_cursor@primary@pipe-c-edp-1-size-128.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/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][296] ([i915#11614] / [i915#3582]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#3555])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#13958])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#13958])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#13958])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#14259])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#13046] / [i915#5354] / [i915#9423])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#6953])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#15329]) +10 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#15329] / [i915#3555] / [i915#6953])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#5354])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#3828])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@kms_pm_dc@dc5-retention-flops.html
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#14544] / [i915#3828])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#3828])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@kms_pm_dc@dc5-retention-flops.html
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#3828])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-2/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: NOTRUN -> [FAIL][311] ([i915#15752])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-glk10: NOTRUN -> [SKIP][312] +170 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk10/igt@kms_pm_lpsp@kms-lpsp.html
- shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#3828])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#8430])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#15073]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: [PASS][316] -> [SKIP][317] ([i915#15073])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [PASS][318] -> [DMESG-WARN][319] ([i915#4423]) +1 other test dmesg-warn
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-13/igt@kms_pm_rpm@i2c.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-16/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][320] -> [SKIP][321] ([i915#15073]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#14544] / [i915#15073])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg1: [PASS][323] -> [SKIP][324] ([i915#15073])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: NOTRUN -> [INCOMPLETE][325] ([i915#14419])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#6524])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#6524])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-7/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][328] ([i915#11520]) +6 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#11520]) +12 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][330] ([i915#9808]) +3 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk10: NOTRUN -> [SKIP][331] ([i915#11520]) +3 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#11520]) +8 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#11520]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk11: NOTRUN -> [SKIP][334] ([i915#11520]) +4 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][335] ([i915#11520]) +12 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#11520] / [i915#14544])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][337] ([i915#11520]) +3 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-snb5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#11520]) +4 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-19/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#12316]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#9683])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#9683])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-page-flip@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9688]) +6 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-5/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9732]) +11 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#9732]) +21 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +9 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-17/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +24 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-7/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][347] ([i915#9732]) +19 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-8/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][348] ([i915#9685])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-14/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#9685])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#9685])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#9685])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][352] ([i915#4235])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk11: NOTRUN -> [INCOMPLETE][353] ([i915#15492])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk11/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][354] ([i915#15500])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#5289])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#12755] / [i915#5190])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#5289]) +2 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#5289])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#5289]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][360] ([i915#12755])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#12755]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][362] ([i915#13179]) +1 other test abort
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_selftest@drm_framebuffer.html
- shard-tglu-1: NOTRUN -> [ABORT][363] ([i915#13179]) +1 other test abort
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][364] ([i915#13179]) +1 other test abort
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk6/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][365] ([i915#13179]) +1 other test abort
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#3555] / [i915#8809])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#8623])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][368] ([i915#12276])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#11920])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-3/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#9906])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu: NOTRUN -> [SKIP][371] ([i915#9906])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-tglu: [PASS][372] -> [FAIL][373] ([i915#10538])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-tglu-10/igt@perf@gen12-group-concurrent-oa-buffer-read.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-9/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#2436])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][375] ([i915#2433])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-19/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-accuracy-98:
- shard-snb: NOTRUN -> [SKIP][376] +142 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-snb1/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][377] ([i915#15778])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk8/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#3291] / [i915#3708])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][379] +43 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-2/igt@prime_vgem@fence-write-hang.html
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#3708])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#9917]) +2 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: NOTRUN -> [SKIP][382] ([i915#9917]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#9917]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-16/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][384] ([i915#12910]) +9 other tests fail
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-mtlp: NOTRUN -> [FAIL][385] ([i915#12910]) +9 other tests fail
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][386] ([i915#14809]) -> [PASS][387] +1 other test pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [INCOMPLETE][388] ([i915#13356]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-glk3/igt@i915_pm_rpm@system-suspend.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk9/igt@i915_pm_rpm@system-suspend.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [INCOMPLETE][390] ([i915#4817]) -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@i915_suspend@debugfs-reader.html
* igt@kms_color@invalid-degamma-lut-sizes:
- shard-dg1: [DMESG-WARN][392] ([i915#4423]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-19/igt@kms_color@invalid-degamma-lut-sizes.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-18/igt@kms_color@invalid-degamma-lut-sizes.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [FAIL][394] ([i915#13566]) -> [PASS][395]
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][396] ([i915#13566]) -> [PASS][397] +5 other tests pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][398] ([i915#12358] / [i915#14152]) -> [PASS][399] +1 other test pass
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_flip@flip-vs-panning:
- shard-snb: [INCOMPLETE][400] ([i915#12314]) -> [PASS][401] +1 other test pass
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-snb5/igt@kms_flip@flip-vs-panning.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-snb7/igt@kms_flip@flip-vs-panning.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][402] ([i915#15073]) -> [PASS][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-18/igt@kms_pm_rpm@dpms-lpsp.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][404] ([i915#15073]) -> [PASS][405] +1 other test pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2: [ABORT][406] ([i915#15759]) -> [PASS][407] +1 other test pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-180.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][408] ([i915#15106]) -> [PASS][409] +1 other test pass
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][410] ([i915#12276]) -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [FAIL][412] ([i915#4349]) -> [PASS][413] +2 other tests pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: [SKIP][414] ([i915#8411]) -> [SKIP][415] ([i915#14544] / [i915#8411]) +2 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: [SKIP][416] ([i915#3281]) -> [SKIP][417] ([i915#14544] / [i915#3281]) +2 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-8/igt@gem_bad_reloc@negative-reloc.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][418] ([i915#14544] / [i915#6335]) -> [SKIP][419] ([i915#6335])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][420] ([i915#6335]) -> [SKIP][421] ([i915#14544] / [i915#6335])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: [SKIP][422] ([i915#4525]) -> [SKIP][423] ([i915#14544] / [i915#4525])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-3/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-rkl: [SKIP][424] ([i915#14544] / [i915#3281]) -> [SKIP][425] ([i915#3281]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent0.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: [SKIP][426] ([i915#4613]) -> [SKIP][427] ([i915#14544] / [i915#4613]) +2 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-4/igt@gem_lmem_swapping@heavy-random.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: [SKIP][428] ([i915#14544] / [i915#4613]) -> [SKIP][429] ([i915#4613])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: [SKIP][430] ([i915#13717]) -> [SKIP][431] ([i915#13717] / [i915#14544])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-context.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][432] ([i915#14544] / [i915#8411]) -> [SKIP][433] ([i915#8411])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][434] ([i915#14544] / [i915#3282]) -> [SKIP][435] ([i915#3282]) +3 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#2527]) -> [SKIP][437] ([i915#2527])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][438] ([i915#14544] / [i915#4387]) -> [SKIP][439] ([i915#4387])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: [SKIP][440] ([i915#12454] / [i915#12712]) -> [SKIP][441] ([i915#12454] / [i915#12712] / [i915#14544])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#5286]) -> [SKIP][443] ([i915#5286])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][444] ([i915#5286]) -> [SKIP][445] ([i915#14544] / [i915#5286]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][446] ([i915#14544] / [i915#3638]) -> [SKIP][447] ([i915#3638])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][448] ([i915#3638]) -> [SKIP][449] ([i915#14544] / [i915#3638])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][450] ([i915#14544]) -> [SKIP][451] +3 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-rkl: [SKIP][452] ([i915#14098] / [i915#6095]) -> [SKIP][453] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-8/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-rkl: [SKIP][454] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][455] ([i915#14098] / [i915#6095]) +1 other test skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][456] ([i915#12805] / [i915#14544]) -> [SKIP][457] ([i915#12805])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][458] ([i915#6095]) -> [SKIP][459] ([i915#14544] / [i915#6095])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][460] ([i915#12313]) -> [SKIP][461] ([i915#12313] / [i915#14544])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][462] ([i915#3742]) -> [SKIP][463] ([i915#14544] / [i915#3742])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-rkl: [SKIP][464] ([i915#11151] / [i915#7828]) -> [SKIP][465] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-8/igt@kms_chamelium_audio@hdmi-audio.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg1: [SKIP][466] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][467] ([i915#11151] / [i915#7828])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-13/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: [SKIP][468] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][469] ([i915#11151] / [i915#7828]) +1 other test skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][471] ([i915#15330] / [i915#3116])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][472] ([i915#6944] / [i915#9424]) -> [SKIP][473] ([i915#9433])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-14/igt@kms_content_protection@mei-interface.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: [SKIP][474] ([i915#6944]) -> [SKIP][475] ([i915#14544] / [i915#6944]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-8/igt@kms_content_protection@suspend-resume.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent:
- shard-rkl: [SKIP][476] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][477] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-3/igt@kms_content_protection@uevent.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][478] ([i915#13049]) -> [SKIP][479] ([i915#13049] / [i915#14544]) +1 other test skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-rkl: [SKIP][480] -> [SKIP][481] ([i915#14544]) +3 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#3955]) -> [SKIP][483] ([i915#3955])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#4854]) -> [SKIP][485] ([i915#4854])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: [SKIP][486] ([i915#9934]) -> [SKIP][487] ([i915#4423] / [i915#9934])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-rkl: [SKIP][488] ([i915#9934]) -> [SKIP][489] ([i915#14544] / [i915#9934]) +3 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: [SKIP][490] ([i915#14544] / [i915#15643]) -> [SKIP][491] ([i915#15643])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-rkl: [SKIP][492] ([i915#15643]) -> [SKIP][493] ([i915#14544] / [i915#15643]) +1 other test skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][494] ([i915#1825]) -> [SKIP][495] ([i915#14544] / [i915#1825]) +8 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg1: [SKIP][496] ([i915#4423]) -> [SKIP][497] +1 other test skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][498] ([i915#15102]) -> [SKIP][499] ([i915#14544] / [i915#15102])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#15102]) -> [SKIP][501] ([i915#15102])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg1: [SKIP][502] ([i915#15102] / [i915#4423]) -> [SKIP][503] ([i915#15102])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][505] ([i915#15102] / [i915#3023]) +3 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg1: [SKIP][506] -> [SKIP][507] ([i915#4423])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#1825]) -> [SKIP][509] ([i915#1825]) +8 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2: [SKIP][510] ([i915#15102] / [i915#3458]) -> [SKIP][511] ([i915#10433] / [i915#15102] / [i915#3458])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: [SKIP][512] ([i915#15102] / [i915#3023]) -> [SKIP][513] ([i915#14544] / [i915#15102] / [i915#3023]) +8 other tests skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-suspend.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg1: [SKIP][514] ([i915#15459] / [i915#4423]) -> [SKIP][515] ([i915#15459])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-19/igt@kms_joiner@basic-force-big-joiner.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-18/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#15458]) -> [SKIP][517] ([i915#15458])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][518] ([i915#14544] / [i915#15709]) -> [SKIP][519] ([i915#15709]) +2 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][520] ([i915#15709]) -> [SKIP][521] ([i915#14544] / [i915#15709]) +1 other test skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: [SKIP][522] ([i915#13958]) -> [SKIP][523] ([i915#13958] / [i915#14544])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-none.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][524] ([i915#14259]) -> [SKIP][525] ([i915#14259] / [i915#14544])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-4/igt@kms_plane_multiple@tiling-yf.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: [SKIP][526] ([i915#5354]) -> [SKIP][527] ([i915#14544] / [i915#5354])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: [SKIP][528] ([i915#14544] / [i915#5354]) -> [SKIP][529] ([i915#5354])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-8/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: [SKIP][530] ([i915#9340]) -> [SKIP][531] ([i915#3828])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-dg1-12/igt@kms_pm_lpsp@kms-lpsp.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][532] ([i915#11520]) -> [SKIP][533] ([i915#11520] / [i915#14544]) +3 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][534] ([i915#11520] / [i915#14544]) -> [SKIP][535] ([i915#11520])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: [SKIP][536] ([i915#1072] / [i915#9732]) -> [SKIP][537] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-3/igt@kms_psr@psr-cursor-plane-move.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][538] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][539] ([i915#1072] / [i915#9732]) +3 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#3555]) -> [SKIP][541] ([i915#3555])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: [SKIP][542] ([i915#9906]) -> [SKIP][543] ([i915#14544] / [i915#9906])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: [SKIP][544] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][545] ([i915#15243] / [i915#3555])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-6/igt@kms_vrr@flip-dpms.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-3/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@negative-basic:
- shard-rkl: [SKIP][546] ([i915#3555] / [i915#9906]) -> [SKIP][547] ([i915#14544] / [i915#3555] / [i915#9906])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-rkl-4/igt@kms_vrr@negative-basic.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-rkl-6/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@module-unload:
- shard-tglu: [ABORT][548] ([i915#15778]) -> [ABORT][549] ([i915#13029] / [i915#15778])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18094/shard-tglu-10/igt@perf_pmu@module-unload.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/shard-tglu-4/igt@perf_pmu@module-unload.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#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#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[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#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[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#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#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#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[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#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#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#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[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#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[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_8777 -> IGTPW_14665
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18094: d7689f077339984fa4c23c972f591ee318b3c56f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14665: c70d99385998deb86f3c7c1a9114d4048d58778f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8777: a50285a68dbef0fe11140adef4016a756f57b324 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14665/index.html
[-- Attachment #2: Type: text/html, Size: 185999 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-03-06 3:52 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-04 10:05 [PATCH v1 0/2] tests/chamelium/audio: Fix resource leaks in audio tests Mohammed Bilal
2026-03-04 10:05 ` [PATCH v1 1/2] tests/chamelium/audio: Fix ALSA handle leak on skipped audio config Mohammed Bilal
2026-03-04 11:19 ` Sebastian Brzezinka
2026-03-04 10:05 ` [PATCH v1 2/2] tests/chamelium/audio: Fix resource leaks on assertion failure Mohammed Bilal
2026-03-04 12:18 ` Sebastian Brzezinka
2026-03-04 17:36 ` Bilal, Mohammed
2026-03-05 6:55 ` Sebastian Brzezinka
2026-03-05 3:28 ` ✓ i915.CI.BAT: success for tests/chamelium/audio: Fix resource leaks in audio tests Patchwork
2026-03-05 11:13 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-05 12:31 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-06 3:52 ` ✗ 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