* [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line
@ 2026-03-25 11:49 Jan Sokolowski
2026-03-25 14:30 ` Rudnicki, Piotr
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Jan Sokolowski @ 2026-03-25 11:49 UTC (permalink / raw)
To: igt-dev; +Cc: zbigniew.kempczynski, peter.senna, piotr.rudnicki, Jan Sokolowski
It was found while running tests that if a test launches threads with
even more subthreads, some igt_debug calls might not print their lines.
Fflush after each line to make sure we see everything we want to see.
Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com>
---
lib/igt_core.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/lib/igt_core.c b/lib/igt_core.c
index 65325f08d..ed4f48d86 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -3294,10 +3294,8 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
pthread_mutex_lock(&print_mutex);
/* use stderr for warning messages and above */
- if (level >= IGT_LOG_WARN) {
+ if (level >= IGT_LOG_WARN)
file = stderr;
- fflush(stdout);
- }
else
file = stdout;
@@ -3309,6 +3307,11 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
_log_line_fprintf(file, "%s%s", thread_id, line);
}
+ /* Ensure output is flushed explicitly, as concurrent test threads
+ * may otherwise cause messages to be dropped or reordered.
+ */
+ fflush(file);
+
pthread_mutex_unlock(&print_mutex);
out:
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line
2026-03-25 11:49 [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line Jan Sokolowski
@ 2026-03-25 14:30 ` Rudnicki, Piotr
2026-03-25 14:40 ` Rudnicki, Piotr
` (5 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Rudnicki, Piotr @ 2026-03-25 14:30 UTC (permalink / raw)
To: Jan Sokolowski, igt-dev; +Cc: zbigniew.kempczynski, peter.senna
Hi,
On 3/25/2026 12:49 PM, Jan Sokolowski wrote:
> It was found while running tests that if a test launches threads with
> even more subthreads, some igt_debug calls might not print their lines.
>
> Fflush after each line to make sure we see everything we want to see.
>
> Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com>
LGTM,
Reviewed-by: Piotr Rudnicki <piotr.rudnicki@intel.com>
> ---
> lib/igt_core.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/lib/igt_core.c b/lib/igt_core.c
> index 65325f08d..ed4f48d86 100644
> --- a/lib/igt_core.c
> +++ b/lib/igt_core.c
> @@ -3294,10 +3294,8 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
> pthread_mutex_lock(&print_mutex);
>
> /* use stderr for warning messages and above */
> - if (level >= IGT_LOG_WARN) {
> + if (level >= IGT_LOG_WARN)
> file = stderr;
> - fflush(stdout);
> - }
> else
> file = stdout;
>
> @@ -3309,6 +3307,11 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
> _log_line_fprintf(file, "%s%s", thread_id, line);
> }
>
> + /* Ensure output is flushed explicitly, as concurrent test threads
> + * may otherwise cause messages to be dropped or reordered.
> + */
> + fflush(file);
> +
> pthread_mutex_unlock(&print_mutex);
>
> out:
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line
2026-03-25 11:49 [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line Jan Sokolowski
2026-03-25 14:30 ` Rudnicki, Piotr
@ 2026-03-25 14:40 ` Rudnicki, Piotr
2026-03-25 18:36 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,v1,1/1] " Patchwork
` (4 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Rudnicki, Piotr @ 2026-03-25 14:40 UTC (permalink / raw)
To: Jan Sokolowski, igt-dev; +Cc: zbigniew.kempczynski, peter.senna
On 3/25/2026 12:49 PM, Jan Sokolowski wrote:
> It was found while running tests that if a test launches threads with
> even more subthreads, some igt_debug calls might not print their lines.
>
> Fflush after each line to make sure we see everything we want to see.
>
> Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com>
LGTM,
Reviewed-by: Piotr Rudnicki <piotr.rudnicki@intel.com>
> ---
> lib/igt_core.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/lib/igt_core.c b/lib/igt_core.c
> index 65325f08d..ed4f48d86 100644
> --- a/lib/igt_core.c
> +++ b/lib/igt_core.c
> @@ -3294,10 +3294,8 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
> pthread_mutex_lock(&print_mutex);
>
> /* use stderr for warning messages and above */
> - if (level >= IGT_LOG_WARN) {
> + if (level >= IGT_LOG_WARN)
> file = stderr;
> - fflush(stdout);
> - }
> else
> file = stdout;
>
> @@ -3309,6 +3307,11 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
> _log_line_fprintf(file, "%s%s", thread_id, line);
> }
>
> + /* Ensure output is flushed explicitly, as concurrent test threads
> + * may otherwise cause messages to be dropped or reordered.
> + */
> + fflush(file);
> +
> pthread_mutex_unlock(&print_mutex);
>
> out:
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,v1,1/1] lib/igt_core: flush output on each line
2026-03-25 11:49 [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line Jan Sokolowski
2026-03-25 14:30 ` Rudnicki, Piotr
2026-03-25 14:40 ` Rudnicki, Piotr
@ 2026-03-25 18:36 ` Patchwork
2026-03-25 18:51 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-25 18:36 UTC (permalink / raw)
To: Jan Sokolowski; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1302 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v1,1/1] lib/igt_core: flush output on each line
URL : https://patchwork.freedesktop.org/series/163839/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8827_BAT -> XEIGTPW_14852_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14852_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6520])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8827/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14852/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* IGT: IGT_8827 -> IGTPW_14852
IGTPW_14852: 14852
IGT_8827: 8827
xe-4784-cfe3d5f3eb5cf3b8aff1710c1c5c1d666f932aa8: cfe3d5f3eb5cf3b8aff1710c1c5c1d666f932aa8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14852/index.html
[-- Attachment #2: Type: text/html, Size: 1864 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,v1,1/1] lib/igt_core: flush output on each line
2026-03-25 11:49 [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line Jan Sokolowski
` (2 preceding siblings ...)
2026-03-25 18:36 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,v1,1/1] " Patchwork
@ 2026-03-25 18:51 ` Patchwork
2026-03-26 3:05 ` ✓ Xe.CI.FULL: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-25 18:51 UTC (permalink / raw)
To: Jan Sokolowski; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3482 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v1,1/1] lib/igt_core: flush output on each line
URL : https://patchwork.freedesktop.org/series/163839/
State : success
== Summary ==
CI Bug Log - changes from IGT_8827 -> IGTPW_14852
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/index.html
Participating hosts (41 -> 39)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14852 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-skl-6600u: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/fi-skl-6600u/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@gem_lmem_swapping@random-engines:
- fi-skl-6600u: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html
* igt@i915_selftest@live@workarounds:
- bat-arls-6: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/bat-arls-6/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/bat-arls-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-rpls-4: [DMESG-WARN][5] ([i915#13400]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
* igt@i915_selftest@live@mman:
- bat-rpls-4: [INCOMPLETE][7] -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/bat-rpls-4/igt@i915_selftest@live@mman.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/bat-rpls-4/igt@i915_selftest@live@mman.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@vgem_basic@unload:
- fi-skl-6600u: [INCOMPLETE][11] ([i915#15844]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/fi-skl-6600u/igt@vgem_basic@unload.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/fi-skl-6600u/igt@vgem_basic@unload.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[i915#15844]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15844
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8827 -> IGTPW_14852
CI-20190529: 20190529
CI_DRM_18213: cfe3d5f3eb5cf3b8aff1710c1c5c1d666f932aa8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14852: 14852
IGT_8827: 8827
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/index.html
[-- Attachment #2: Type: text/html, Size: 4330 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.FULL: success for series starting with [i-g-t,v1,1/1] lib/igt_core: flush output on each line
2026-03-25 11:49 [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line Jan Sokolowski
` (3 preceding siblings ...)
2026-03-25 18:51 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-26 3:05 ` Patchwork
2026-03-26 4:19 ` ✗ i915.CI.Full: failure " Patchwork
2026-03-26 15:39 ` [PATCH i-g-t v1 1/1] " Zbigniew Kempczyński
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-26 3:05 UTC (permalink / raw)
To: Jan Sokolowski; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2593 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v1,1/1] lib/igt_core: flush output on each line
URL : https://patchwork.freedesktop.org/series/163839/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8827_FULL -> XEIGTPW_14852_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14852_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#301]) +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8827/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14852/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][3] -> [FAIL][4] ([Intel XE#7340])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8827/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14852/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][5] -> [FAIL][6] ([Intel XE#5625])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8827/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14852/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
#### Possible fixes ####
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][7] ([Intel XE#7340]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8827/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14852/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
Build changes
-------------
* IGT: IGT_8827 -> IGTPW_14852
IGTPW_14852: 14852
IGT_8827: 8827
xe-4784-cfe3d5f3eb5cf3b8aff1710c1c5c1d666f932aa8: cfe3d5f3eb5cf3b8aff1710c1c5c1d666f932aa8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14852/index.html
[-- Attachment #2: Type: text/html, Size: 3313 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [i-g-t,v1,1/1] lib/igt_core: flush output on each line
2026-03-25 11:49 [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line Jan Sokolowski
` (4 preceding siblings ...)
2026-03-26 3:05 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-03-26 4:19 ` Patchwork
2026-03-26 15:39 ` [PATCH i-g-t v1 1/1] " Zbigniew Kempczyński
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-03-26 4:19 UTC (permalink / raw)
To: Jan Sokolowski; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 124881 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v1,1/1] lib/igt_core: flush output on each line
URL : https://patchwork.freedesktop.org/series/163839/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8827_full -> IGTPW_14852_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14852_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14852_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_14852/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14852_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-snb: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-snb1/igt@kms_async_flips@async-flip-suspend-resume.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-snb6/igt@kms_async_flips@async-flip-suspend-resume.html
Known issues
------------
Here are the changes found in IGTPW_14852_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][4] ([i915#11078])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#7697])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#7697])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#7697])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-6/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-7/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-9/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-2/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#13356])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#6335])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: [PASS][15] -> [FAIL][16] ([i915#15454])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][18] ([i915#13356]) +1 other test incomplete
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][19] ([i915#1099]) +5 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-snb7/igt@gem_ctx_persistence@file.html
* igt@gem_eio@in-flight-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][20] ([i915#13390])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk10/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@parallel:
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#4525])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-7/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#6344])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#3281]) +8 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#14544] / [i915#3281])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#3281])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-7/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-18/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4537] / [i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#4860])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4860])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4860]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-6/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu: NOTRUN -> [SKIP][34] ([i915#2190])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-10/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][35] ([i915#2190])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk5/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4613] / [i915#7582])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#14544] / [i915#4613])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][40] ([i915#4613]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk5/igt@gem_lmem_swapping@random-engines.html
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-7/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4077]) +9 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@bad-offset:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-5/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4083])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-18/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3282]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3282]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads.html
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3282]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-1/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#3282]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#8428]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-6/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#5190] / [i915#8428]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4079])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#15656])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-5/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#3297])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3297]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#3297]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-5/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][56] ([i915#13356])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk8/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#2527]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#14544] / [i915#2527])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#2856]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#2527])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-13/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#2527] / [i915#2856]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-7/igt@gen9_exec_parse@unaligned-jump.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu-1: NOTRUN -> [SKIP][62] ([i915#2527] / [i915#2856]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#14123])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@i915_drm_fdinfo@all-busy-check-all.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#14118])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@fault-injection:
- shard-dg1: NOTRUN -> [ABORT][65] ([i915#11815]) +1 other test abort
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-14/igt@i915_module_load@fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#8399])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-4/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][67] -> [INCOMPLETE][68] ([i915#13356] / [i915#13820]) +1 other test incomplete
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#6590]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#6590]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-16/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][71] ([i915#13790] / [i915#2681]) +1 other test warn
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [PASS][72] -> [ABORT][73] ([i915#15060])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: [PASS][74] -> [INCOMPLETE][75] ([i915#13356] / [i915#15172])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-glk4/igt@i915_pm_rpm@system-suspend-execbuf.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk9/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#11681] / [i915#6621])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@i915_pm_rps@basic-api.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#5723])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: NOTRUN -> [DMESG-FAIL][78] ([i915#12061]) +1 other test dmesg-fail
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-8/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][79] ([i915#4817] / [i915#7443])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk11: NOTRUN -> [INCOMPLETE][80] ([i915#4817])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk11/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][81] ([i915#4817])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk6/igt@i915_suspend@forcewake.html
- shard-rkl: [PASS][82] -> [INCOMPLETE][83] ([i915#4817])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-8/igt@i915_suspend@forcewake.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@no-handle:
- shard-dg1: [PASS][84] -> [DMESG-WARN][85] ([i915#4391] / [i915#4423])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg1-17/igt@kms_addfb_basic@no-handle.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-13/igt@kms_addfb_basic@no-handle.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#9531])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][87] ([i915#1769])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#1769] / [i915#3555])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk11: NOTRUN -> [SKIP][89] ([i915#1769])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4538] / [i915#5286]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-17/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#5286]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#5286]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#5286]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][94] +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-glk10: NOTRUN -> [SKIP][95] +41 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#3638]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5190]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][99] +41 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#6095]) +65 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#12313])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#12313])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/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][104] ([i915#6095]) +162 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][105] +391 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6095]) +9 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#14544] / [i915#6095]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#14098] / [i915#14544] / [i915#6095])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/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-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#12313])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#6095]) +59 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-10/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#10307] / [i915#6095]) +102 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#14098] / [i915#6095]) +47 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#12805])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#15582]) +1 other test incomplete
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [PASS][115] -> [INCOMPLETE][116] ([i915#15582]) +1 other test incomplete
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#6095]) +49 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#6095]) +14 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][119] +84 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk11/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#3742])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#13781]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][122] +7 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-5/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#11151] / [i915#14544] / [i915#7828])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#11151] / [i915#7828]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#11151] / [i915#7828]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-12/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#11151] / [i915#7828]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#11151] / [i915#7828]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#11151] / [i915#7828]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-3/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][129] -> [SKIP][130] ([i915#12655] / [i915#3555])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-10/igt@kms_color@deep-color.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-6/igt@kms_color@deep-color.html
- shard-rkl: [PASS][131] -> [SKIP][132] ([i915#12655] / [i915#3555])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_color@deep-color.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@kms_color@deep-color.html
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#3555] / [i915#9979])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#15865]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#15330] / [i915#3116])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#15330])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#15330] / [i915#3116] / [i915#3299])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#15865])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-8/igt@kms_content_protection@legacy-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#15865])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-19/igt@kms_content_protection@legacy-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#15865])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-4/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#15865]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#14544] / [i915#15865])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: NOTRUN -> [FAIL][143] ([i915#13566]) +3 other tests fail
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][144] ([i915#13566])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][145] -> [FAIL][146] ([i915#13566]) +3 other tests fail
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-tglu-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#13049])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][148] -> [FAIL][149] ([i915#13566]) +1 other test fail
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#14544] / [i915#3555]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#8814])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#4103])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#14544])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#13046] / [i915#5354]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
- shard-rkl: NOTRUN -> [SKIP][155] +21 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#9809])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][157] ([i915#15804])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#4103])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#9723])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#13691])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-3/igt@kms_display_modes@extended-mode-basic.html
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#13691])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#13749])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#13748])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-9/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#13707])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#3840])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-5/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3469])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#2065] / [i915#4854])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#1839])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#1839])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#9934]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-13/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][176] -> [FAIL][177] ([i915#13027]) +1 other test fail
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-snb: [PASS][178] -> [INCOMPLETE][179] ([i915#12314]) +1 other test incomplete
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-snb7/igt@kms_flip@2x-flip-vs-modeset.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-snb4/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3637] / [i915#9934])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][181] ([i915#12745] / [i915#4839])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-snb: [PASS][182] -> [TIMEOUT][183] ([i915#14033] / [i915#14350])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][184] ([i915#4839])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][185] -> [TIMEOUT][186] ([i915#14033])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#9934]) +4 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#3637] / [i915#9934]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-9/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3637] / [i915#9934]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#9934]) +8 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#8381])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-6/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk10: NOTRUN -> [INCOMPLETE][192] ([i915#12745] / [i915#4839])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk10: NOTRUN -> [INCOMPLETE][193] ([i915#12745])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#15643]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#15643]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#15643]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#15643]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#15643] / [i915#5190])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#15643]) +6 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#15643]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#8708]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#1825]) +35 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][203] +19 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][204] +13 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1825]) +6 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#5439]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#15104])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#15102]) +7 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#15102]) +13 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#14544] / [i915#15102] / [i915#3023])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#15102] / [i915#3458]) +5 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#14544] / [i915#1825]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#8708]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#15102] / [i915#3458]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#15102] / [i915#3023]) +20 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#9766])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#15102]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#15102]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#15102])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#5354]) +13 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#8708]) +4 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-16/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [PASS][224] -> [SKIP][225] ([i915#3555] / [i915#8228]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-10/igt@kms_hdr@static-toggle.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@kms_hdr@static-toggle.html
- shard-rkl: [PASS][226] -> [SKIP][227] ([i915#3555] / [i915#8228])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_hdr@static-toggle.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#15459])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#15459])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#13688])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-9/igt@kms_joiner@basic-max-non-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#13688])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-5/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#13688])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-6/igt@kms_joiner@basic-max-non-joiner.html
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#13688])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#13688])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-14/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#15459])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#15458])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_lease@lease-uevent:
- shard-dg1: [PASS][237] -> [DMESG-WARN][238] ([i915#4423]) +1 other test dmesg-warn
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg1-13/igt@kms_lease@lease-uevent.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-18/igt@kms_lease@lease-uevent.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#6301])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-8/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][240] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#15709]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#15709]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#15709]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#15709])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#15608]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#15608]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#15709]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][248] ([i915#13026]) +1 other test incomplete
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#14259])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [PASS][250] -> [SKIP][251] ([i915#6953] / [i915#9423])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#15329]) +18 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#14544] / [i915#15329]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#15329] / [i915#3555])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#15329]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#5354])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#9685]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu-1: NOTRUN -> [FAIL][258] ([i915#15752])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#9685])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][260] -> [SKIP][261] ([i915#9340])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#4077]) +6 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-14/igt@kms_pm_rpm@cursor.html
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#4077]) +5 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-7/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][264] -> [SKIP][265] ([i915#15073]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#15073])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][267] -> [SKIP][268] ([i915#14544] / [i915#15073])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#6524] / [i915#6805])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-8/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#6524]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-19/igt@kms_prime@basic-modeset-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#6524])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-3/igt@kms_prime@basic-modeset-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#6524])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-4/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#11520]) +5 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#11520]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#11520]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
- shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#11520]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][277] ([i915#11520]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk10/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#11520]) +4 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#12316])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-snb: NOTRUN -> [SKIP][280] ([i915#11520]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-snb7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][281] ([i915#11520])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk11/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][282] ([i915#11520]) +13 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#9683])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-13/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#9683])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#1072] / [i915#9732]) +7 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr2-basic:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#9732]) +8 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#9732]) +13 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-3/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#9688]) +5 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-6/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +24 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#1072] / [i915#9732]) +8 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-19/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#9685]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#5289])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#12755] / [i915#15867])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#5190])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#5289])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#12755] / [i915#15867] / [i915#5190])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#3555]) +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-none.html
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#3555]) +3 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-none.html
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#3555]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-none.html
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#3555]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-none.html
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#5030] / [i915#9041])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#5030]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#5030] / [i915#9041])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#3555]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#8623])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][307] +125 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-snb5/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][308] ([i915#12276]) +1 other test incomplete
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#15243] / [i915#3555])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#11920])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#9906])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#9906])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg2: [PASS][313] -> [FAIL][314] ([i915#15453])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html
- shard-dg1: [PASS][315] -> [FAIL][316] ([i915#15453])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-14/igt@perf_pmu@all-busy-idle-check-all.html
- shard-mtlp: [PASS][317] -> [FAIL][318] ([i915#15453])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-6/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][319] ([i915#15778])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-glk5/igt@perf_pmu@module-unload.html
- shard-rkl: NOTRUN -> [ABORT][320] ([i915#15778])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-suspend:
- shard-rkl: [PASS][321] -> [INCOMPLETE][322] ([i915#13520])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-5/igt@perf_pmu@rc6-suspend.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#8516])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#14121]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-16/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#3291] / [i915#3708])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-7/igt@prime_vgem@basic-fence-read.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#9917])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#4818])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][328] ([i915#13356]) -> [PASS][329] +1 other test pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [INCOMPLETE][330] ([i915#13809]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@gem_softpin@noreloc-s3.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-mtlp: [INCOMPLETE][332] -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-mtlp-5/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-5/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: [INCOMPLETE][334] ([i915#13356]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-4/igt@i915_pm_rpm@system-suspend.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@i915_pm_rpm@system-suspend.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [ABORT][336] ([i915#15131]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-1/igt@i915_suspend@fence-restore-untiled.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-rkl: [ABORT][338] ([i915#15140]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-1/igt@i915_suspend@sysfs-reader.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@i915_suspend@sysfs-reader.html
* igt@kms_3d@basic:
- shard-mtlp: [SKIP][340] ([i915#15726]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-mtlp-1/igt@kms_3d@basic.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-8/igt@kms_3d@basic.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-tglu: [FAIL][342] ([i915#13566]) -> [PASS][343] +1 other test pass
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-tglu-10/igt@kms_cursor_crc@cursor-random-64x21.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-10/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [FAIL][344] ([i915#13566]) -> [PASS][345] +2 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-dg1: [DMESG-WARN][346] ([i915#4423]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg1-14/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-19/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][348] ([i915#14033]) -> [PASS][349] +1 other test pass
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-mtlp: [FAIL][350] ([i915#10826]) -> [PASS][351] +1 other test pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [SKIP][352] ([i915#15073]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [INCOMPLETE][354] ([i915#14419]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_setmode@basic:
- shard-tglu: [FAIL][356] ([i915#15106]) -> [PASS][357] +1 other test pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-tglu-10/igt@kms_setmode@basic.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-8/igt@kms_setmode@basic.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][358] ([i915#4349]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
#### Warnings ####
* igt@device_reset@cold-reset-bound:
- shard-rkl: [SKIP][360] ([i915#11078] / [i915#14544]) -> [SKIP][361] ([i915#11078])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@device_reset@cold-reset-bound.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@device_reset@cold-reset-bound.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: [SKIP][362] ([i915#14544] / [i915#15678]) -> [SKIP][363] ([i915#15678])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@drm_buddy@drm_buddy.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@drm_buddy@drm_buddy.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: [SKIP][364] ([i915#3555] / [i915#9323]) -> [SKIP][365] ([i915#14544] / [i915#3555] / [i915#9323])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][366] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][367] ([i915#3555] / [i915#9323])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][368] ([i915#7697]) -> [SKIP][369] ([i915#14544] / [i915#7697])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-8/igt@gem_close_race@multigpu-basic-process.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][370] ([i915#14544] / [i915#8562]) -> [SKIP][371] ([i915#8562])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][372] ([i915#14544] / [i915#280]) -> [SKIP][373] ([i915#280])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-rkl: [SKIP][374] ([i915#3281]) -> [SKIP][375] ([i915#14544] / [i915#3281]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-8/igt@gem_exec_reloc@basic-wc-gtt.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: [SKIP][376] ([i915#14544] / [i915#3281]) -> [SKIP][377] ([i915#3281]) +3 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: [SKIP][378] ([i915#4613]) -> [SKIP][379] ([i915#14544] / [i915#4613])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: [SKIP][380] ([i915#14544] / [i915#4613]) -> [SKIP][381] ([i915#4613]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-rkl: [SKIP][382] ([i915#14544] / [i915#3282]) -> [SKIP][383] ([i915#3282]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-snoop.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][384] ([i915#13717] / [i915#14544]) -> [SKIP][385] ([i915#13717])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: [SKIP][386] ([i915#13717]) -> [FAIL][387] ([i915#15169])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-rkl: [SKIP][388] ([i915#14544] / [i915#2527]) -> [SKIP][389] ([i915#2527])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-5/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: [SKIP][390] ([i915#2527]) -> [SKIP][391] ([i915#14544] / [i915#2527])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@fault-injection:
- shard-mtlp: [ABORT][392] ([i915#15481]) -> [ABORT][393] ([i915#15342] / [i915#15481])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-mtlp-5/igt@i915_module_load@fault-injection.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-mtlp-5/igt@i915_module_load@fault-injection.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][394] ([i915#14544] / [i915#8399]) -> [SKIP][395] ([i915#8399])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: [SKIP][396] ([i915#5286]) -> [SKIP][397] ([i915#14544] / [i915#5286]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][398] ([i915#14544] / [i915#5286]) -> [SKIP][399] ([i915#5286]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][400] ([i915#14544] / [i915#3638]) -> [SKIP][401] ([i915#3638])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][402] ([i915#3638]) -> [SKIP][403] ([i915#14544] / [i915#3638]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][404] -> [SKIP][405] ([i915#14544])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][406] ([i915#14098] / [i915#6095]) -> [SKIP][407] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][408] ([i915#6095]) -> [SKIP][409] ([i915#14544] / [i915#6095]) +3 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][410] ([i915#12313] / [i915#14544]) -> [SKIP][411] ([i915#12313]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][412] ([i915#14544] / [i915#6095]) -> [SKIP][413] ([i915#6095]) +1 other test skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][414] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][415] ([i915#14098] / [i915#6095]) +2 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: [SKIP][416] ([i915#11151] / [i915#7828]) -> [SKIP][417] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-read.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-rkl: [SKIP][418] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][419] ([i915#11151] / [i915#7828]) +2 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: [SKIP][420] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][421] ([i915#15330] / [i915#3116])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][422] ([i915#15330] / [i915#3116]) -> [SKIP][423] ([i915#14544] / [i915#15330] / [i915#3116])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2: [SKIP][424] ([i915#13049] / [i915#3359]) -> [SKIP][425] ([i915#13049])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][426] ([i915#13049] / [i915#14544]) -> [SKIP][427] ([i915#13049]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg1: [SKIP][428] ([i915#3555]) -> [SKIP][429] ([i915#3555] / [i915#4423])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][430] ([i915#3555]) -> [SKIP][431] ([i915#14544] / [i915#3555])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: [SKIP][432] ([i915#4103]) -> [SKIP][433] ([i915#14544] / [i915#4103])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: [SKIP][434] ([i915#14544]) -> [SKIP][435] +5 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: [SKIP][436] ([i915#13749] / [i915#14544]) -> [SKIP][437] ([i915#13749])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][438] ([i915#13748] / [i915#14544]) -> [SKIP][439] ([i915#13748])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][440] ([i915#9337]) -> [SKIP][441] ([i915#14544] / [i915#9337])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-8/igt@kms_feature_discovery@dp-mst.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#9934]) -> [SKIP][443] ([i915#9934]) +1 other test skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-dg1: [SKIP][444] ([i915#9934]) -> [SKIP][445] ([i915#4423] / [i915#9934])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg1-17/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-13/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: [SKIP][446] ([i915#9934]) -> [SKIP][447] ([i915#14544] / [i915#9934])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][448] ([i915#1825]) -> [SKIP][449] ([i915#14544] / [i915#1825]) +11 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][450] ([i915#15102]) -> [SKIP][451] ([i915#14544] / [i915#15102])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [SKIP][452] ([i915#15102] / [i915#3458]) -> [SKIP][453] ([i915#10433] / [i915#15102] / [i915#3458])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][454] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][455] ([i915#15102] / [i915#3458]) +2 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-rkl: [SKIP][456] ([i915#14544] / [i915#15102]) -> [SKIP][457] ([i915#15102])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][458] ([i915#15102] / [i915#3023]) -> [SKIP][459] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#1825]) -> [SKIP][461] ([i915#1825]) +12 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][463] ([i915#15102] / [i915#3023]) +2 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][464] ([i915#1187] / [i915#12713]) -> [SKIP][465] ([i915#12713])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: [SKIP][466] ([i915#12713] / [i915#4423]) -> [SKIP][467] ([i915#12713])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg1-19/igt@kms_hdr@brightness-with-hdr.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg1-17/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#15458]) -> [SKIP][469] ([i915#15458])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#15709]) -> [SKIP][471] ([i915#15709])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: [SKIP][472] ([i915#15709]) -> [SKIP][473] ([i915#14544] / [i915#15709]) +2 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][474] ([i915#14544] / [i915#3555]) -> [SKIP][475] ([i915#3555]) +2 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-8/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: [SKIP][476] ([i915#13958] / [i915#14544]) -> [SKIP][477] ([i915#13958])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-rkl: [SKIP][478] ([i915#11520]) -> [SKIP][479] ([i915#11520] / [i915#14544]) +2 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][480] ([i915#11520] / [i915#14544]) -> [SKIP][481] ([i915#11520])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][482] ([i915#9683]) -> [SKIP][483] ([i915#14544] / [i915#9683])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#9683]) -> [SKIP][485] ([i915#9683])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-rkl: [SKIP][486] ([i915#1072] / [i915#9732]) -> [SKIP][487] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-2/igt@kms_psr@fbc-psr-sprite-plane-move.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@pr-no-drrs:
- shard-rkl: [SKIP][488] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][489] ([i915#1072] / [i915#9732]) +4 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_psr@pr-no-drrs.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_psr@pr-no-drrs.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: [SKIP][490] ([i915#15867]) -> [SKIP][491] ([i915#12755] / [i915#15867])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: [SKIP][492] ([i915#14544] / [i915#9906]) -> [SKIP][493] ([i915#9906])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf_pmu@module-unload:
- shard-tglu: [ABORT][494] ([i915#15778]) -> [INCOMPLETE][495] ([i915#13520])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-tglu-2/igt@perf_pmu@module-unload.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-tglu-2/igt@perf_pmu@module-unload.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: [SKIP][496] ([i915#14544] / [i915#3708]) -> [SKIP][497] ([i915#3708])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8827/shard-rkl-6/igt@prime_vgem@fence-write-hang.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/shard-rkl-2/igt@prime_vgem@fence-write-hang.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#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#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[i915#15169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15169
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[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#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[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#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#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[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#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#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#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[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#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[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#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8827 -> IGTPW_14852
CI-20190529: 20190529
CI_DRM_18213: cfe3d5f3eb5cf3b8aff1710c1c5c1d666f932aa8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14852: 14852
IGT_8827: 8827
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14852/index.html
[-- Attachment #2: Type: text/html, Size: 166393 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line
2026-03-25 11:49 [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line Jan Sokolowski
` (5 preceding siblings ...)
2026-03-26 4:19 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-03-26 15:39 ` Zbigniew Kempczyński
2026-04-10 14:09 ` Kamil Konieczny
6 siblings, 1 reply; 9+ messages in thread
From: Zbigniew Kempczyński @ 2026-03-26 15:39 UTC (permalink / raw)
To: Jan Sokolowski; +Cc: igt-dev, peter.senna, piotr.rudnicki
On Wed, Mar 25, 2026 at 12:49:01PM +0100, Jan Sokolowski wrote:
> It was found while running tests that if a test launches threads with
> even more subthreads, some igt_debug calls might not print their lines.
>
> Fflush after each line to make sure we see everything we want to see.
>
> Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com>
> ---
> lib/igt_core.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/lib/igt_core.c b/lib/igt_core.c
> index 65325f08d..ed4f48d86 100644
> --- a/lib/igt_core.c
> +++ b/lib/igt_core.c
> @@ -3294,10 +3294,8 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
> pthread_mutex_lock(&print_mutex);
>
> /* use stderr for warning messages and above */
> - if (level >= IGT_LOG_WARN) {
> + if (level >= IGT_LOG_WARN)
> file = stderr;
> - fflush(stdout);
> - }
> else
> file = stdout;
>
> @@ -3309,6 +3307,11 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
> _log_line_fprintf(file, "%s%s", thread_id, line);
> }
>
> + /* Ensure output is flushed explicitly, as concurrent test threads
> + * may otherwise cause messages to be dropped or reordered.
> + */
> + fflush(file);
stderr is not buffered, so I bet this is no-op call.
fflush(stdout) is imo enough here. But I agree, fflush on the end
on stdout of this critical section is better.
With or without nit addressed:
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
--
Zbigniew
> +
> pthread_mutex_unlock(&print_mutex);
>
> out:
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line
2026-03-26 15:39 ` [PATCH i-g-t v1 1/1] " Zbigniew Kempczyński
@ 2026-04-10 14:09 ` Kamil Konieczny
0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2026-04-10 14:09 UTC (permalink / raw)
To: Zbigniew Kempczyński
Cc: Jan Sokolowski, igt-dev, peter.senna, piotr.rudnicki
Hi Zbigniew,
On 2026-03-26 at 16:39:03 +0100, Zbigniew Kempczyński wrote:
> On Wed, Mar 25, 2026 at 12:49:01PM +0100, Jan Sokolowski wrote:
> > It was found while running tests that if a test launches threads with
> > even more subthreads, some igt_debug calls might not print their lines.
> >
> > Fflush after each line to make sure we see everything we want to see.
> >
> > Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com>
> > ---
> > lib/igt_core.c | 9 ++++++---
> > 1 file changed, 6 insertions(+), 3 deletions(-)
> >
> > diff --git a/lib/igt_core.c b/lib/igt_core.c
> > index 65325f08d..ed4f48d86 100644
> > --- a/lib/igt_core.c
> > +++ b/lib/igt_core.c
> > @@ -3294,10 +3294,8 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
> > pthread_mutex_lock(&print_mutex);
> >
> > /* use stderr for warning messages and above */
> > - if (level >= IGT_LOG_WARN) {
> > + if (level >= IGT_LOG_WARN)
> > file = stderr;
> > - fflush(stdout);
> > - }
> > else
> > file = stdout;
> >
> > @@ -3309,6 +3307,11 @@ void igt_vlog(const char *domain, enum igt_log_level level, const char *format,
> > _log_line_fprintf(file, "%s%s", thread_id, line);
> > }
> >
> > + /* Ensure output is flushed explicitly, as concurrent test threads
> > + * may otherwise cause messages to be dropped or reordered.
> > + */
> > + fflush(file);
>
> stderr is not buffered, so I bet this is no-op call.
> fflush(stdout) is imo enough here. But I agree, fflush on the end
> on stdout of this critical section is better.
>
> With or without nit addressed:
>
> Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
>
> --
> Zbigniew
>
This is not needed for igt_runner test runs, as runner sends
both outputs via socket. It could help a developer running
test on his/her machine, so maybe add a global var check here
and call it only in that scenario?
Regards,
Kamil
> > +
> > pthread_mutex_unlock(&print_mutex);
> >
> > out:
> > --
> > 2.43.0
> >
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-04-10 14:10 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-25 11:49 [PATCH i-g-t v1 1/1] lib/igt_core: flush output on each line Jan Sokolowski
2026-03-25 14:30 ` Rudnicki, Piotr
2026-03-25 14:40 ` Rudnicki, Piotr
2026-03-25 18:36 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,v1,1/1] " Patchwork
2026-03-25 18:51 ` ✓ i915.CI.BAT: " Patchwork
2026-03-26 3:05 ` ✓ Xe.CI.FULL: " Patchwork
2026-03-26 4:19 ` ✗ i915.CI.Full: failure " Patchwork
2026-03-26 15:39 ` [PATCH i-g-t v1 1/1] " Zbigniew Kempczyński
2026-04-10 14:09 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox