* [igt-dev] [PATCH i-g-t] lib: Put edid_ar_svds where it's used
@ 2021-04-27 5:42 Petri Latvala
2021-04-27 5:43 ` Joshi, Kunal1
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Petri Latvala @ 2021-04-27 5:42 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi, Petri Latvala
edid_ar_svds was hiding in igt_chamelium instead of igt_kms where it's
used, breaking IGT building when chamelium support was disabled.
Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Kunal Joshi <kunal1.joshi@intel.com>
---
lib/igt_chamelium.h | 5 -----
lib/igt_kms.c | 5 +++++
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/lib/igt_chamelium.h b/lib/igt_chamelium.h
index 019bdbfe..f40e848e 100644
--- a/lib/igt_chamelium.h
+++ b/lib/igt_chamelium.h
@@ -82,11 +82,6 @@ struct chamelium_infoframe {
struct chamelium_edid;
-/* Set of Video Identification Codes advertised in the EDID */
-static const uint8_t edid_ar_svds[] = {
- 16, /* 1080p @ 60Hz, 16:9 */
-};
-
/**
* CHAMELIUM_MAX_PORTS: the maximum number of ports supported by igt_chamelium.
*
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index df946a7d..47b829b0 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -478,6 +478,11 @@ const struct edid *igt_kms_get_3d_edid(void)
return edid;
}
+/* Set of Video Identification Codes advertised in the EDID */
+static const uint8_t edid_ar_svds[] = {
+ 16, /* 1080p @ 60Hz, 16:9 */
+};
+
/**
* igt_kms_get_aspect_ratio_edid:
*
--
2.29.2
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib: Put edid_ar_svds where it's used
2021-04-27 5:42 [igt-dev] [PATCH i-g-t] lib: Put edid_ar_svds where it's used Petri Latvala
@ 2021-04-27 5:43 ` Joshi, Kunal1
2021-04-27 6:17 ` Petri Latvala
2021-04-27 6:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-04-27 11:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 1 reply; 6+ messages in thread
From: Joshi, Kunal1 @ 2021-04-27 5:43 UTC (permalink / raw)
To: Latvala, Petri, igt-dev@lists.freedesktop.org
From: Latvala, Petri <petri.latvala@intel.com>
Sent: Tuesday, April 27, 2021 11:12 AM
To: igt-dev@lists.freedesktop.org
Cc: Latvala, Petri <petri.latvala@intel.com>; Joshi, Kunal1 <kunal1.joshi@intel.com>
Subject: [PATCH i-g-t] lib: Put edid_ar_svds where it's used
edid_ar_svds was hiding in igt_chamelium instead of igt_kms where it's used, breaking IGT building when chamelium support was disabled.
Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib: Put edid_ar_svds where it's used
2021-04-27 5:43 ` Joshi, Kunal1
@ 2021-04-27 6:17 ` Petri Latvala
2021-04-27 6:18 ` Joshi, Kunal1
0 siblings, 1 reply; 6+ messages in thread
From: Petri Latvala @ 2021-04-27 6:17 UTC (permalink / raw)
To: Joshi, Kunal1; +Cc: igt-dev@lists.freedesktop.org
On Tue, Apr 27, 2021 at 08:43:07AM +0300, Joshi, Kunal1 wrote:
> From: Latvala, Petri <petri.latvala@intel.com>
> Sent: Tuesday, April 27, 2021 11:12 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Latvala, Petri <petri.latvala@intel.com>; Joshi, Kunal1 <kunal1.joshi@intel.com>
> Subject: [PATCH i-g-t] lib: Put edid_ar_svds where it's used
>
> edid_ar_svds was hiding in igt_chamelium instead of igt_kms where it's used, breaking IGT building when chamelium support was disabled.
>
> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> Cc: Kunal Joshi <kunal1.joshi@intel.com>
> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
Thanks, merged after checking that this indeed fixes all gitlab side
tests and doesn't cause new ones.
--
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib: Put edid_ar_svds where it's used
2021-04-27 6:17 ` Petri Latvala
@ 2021-04-27 6:18 ` Joshi, Kunal1
0 siblings, 0 replies; 6+ messages in thread
From: Joshi, Kunal1 @ 2021-04-27 6:18 UTC (permalink / raw)
To: Latvala, Petri; +Cc: igt-dev@lists.freedesktop.org
>> From: Latvala, Petri <petri.latvala@intel.com>
>> Sent: Tuesday, April 27, 2021 11:12 AM
>> To: igt-dev@lists.freedesktop.org
>> Cc: Latvala, Petri <petri.latvala@intel.com>; Joshi, Kunal1
>> <kunal1.joshi@intel.com>
>> Subject: [PATCH i-g-t] lib: Put edid_ar_svds where it's used
>>
>> edid_ar_svds was hiding in igt_chamelium instead of igt_kms where it's used, breaking IGT building when chamelium support was disabled.
>>
>> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
>> Cc: Kunal Joshi <kunal1.joshi@intel.com>
>> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
>Thanks, merged after checking that this indeed fixes all gitlab side tests and doesn't cause new ones.
>--
>Petri Latvala
Thanks petri for the quick resolution.
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib: Put edid_ar_svds where it's used
2021-04-27 5:42 [igt-dev] [PATCH i-g-t] lib: Put edid_ar_svds where it's used Petri Latvala
2021-04-27 5:43 ` Joshi, Kunal1
@ 2021-04-27 6:30 ` Patchwork
2021-04-27 11:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2021-04-27 6:30 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 2756 bytes --]
== Series Details ==
Series: lib: Put edid_ar_svds where it's used
URL : https://patchwork.freedesktop.org/series/89525/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_10014 -> IGTPW_5765
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/index.html
Known issues
------------
Here are the changes found in IGTPW_5765 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@sync-fork-compute0:
- fi-snb-2600: NOTRUN -> [SKIP][1] ([fdo#109271]) +17 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/fi-snb-2600/igt@amdgpu/amd_cs_nop@sync-fork-compute0.html
* igt@kms_chamelium@dp-crc-fast:
- fi-bsw-nick: NOTRUN -> [SKIP][2] ([fdo#109271] / [fdo#111827]) +8 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/fi-bsw-nick/igt@kms_chamelium@dp-crc-fast.html
* igt@prime_vgem@basic-fence-flip:
- fi-bsw-nick: NOTRUN -> [SKIP][3] ([fdo#109271]) +63 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/fi-bsw-nick/igt@prime_vgem@basic-fence-flip.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- fi-snb-2600: [INCOMPLETE][4] ([i915#2782]) -> [PASS][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
[i915#3277]: https://gitlab.freedesktop.org/drm/intel/issues/3277
[i915#3283]: https://gitlab.freedesktop.org/drm/intel/issues/3283
Participating hosts (39 -> 37)
------------------------------
Additional (1): fi-bsw-nick
Missing (3): fi-dg1-1 fi-bsw-cyan fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6075 -> IGTPW_5765
CI-20190529: 20190529
CI_DRM_10014: 7b75f7fa1e7155cfeb6f928895ed259aaf6b4c8e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5765: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/index.html
IGT_6075: ccf602c569257291045415ff504a6d2460986c28 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/index.html
[-- Attachment #1.2: Type: text/html, Size: 3443 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for lib: Put edid_ar_svds where it's used
2021-04-27 5:42 [igt-dev] [PATCH i-g-t] lib: Put edid_ar_svds where it's used Petri Latvala
2021-04-27 5:43 ` Joshi, Kunal1
2021-04-27 6:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2021-04-27 11:59 ` Patchwork
2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2021-04-27 11:59 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 30255 bytes --]
== Series Details ==
Series: lib: Put edid_ar_svds where it's used
URL : https://patchwork.freedesktop.org/series/89525/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_10014_full -> IGTPW_5765_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_5765_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_5765_full, please notify your bug team 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_5765/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_5765_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_cursor@pipe-a-primary-size-64:
- shard-tglb: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-tglb1/igt@kms_plane_cursor@pipe-a-primary-size-64.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb7/igt@kms_plane_cursor@pipe-a-primary-size-64.html
Known issues
------------
Here are the changes found in IGTPW_5765_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_create@create-massive:
- shard-snb: NOTRUN -> [DMESG-WARN][3] ([i915#3002])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-snb2/igt@gem_create@create-massive.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) +4 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html
* igt@gem_ctx_persistence@many-contexts:
- shard-tglb: [PASS][5] -> [FAIL][6] ([i915#2410])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb5/igt@gem_ctx_persistence@many-contexts.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-kbl: NOTRUN -> [FAIL][7] ([i915#2842])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl2/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglb: [PASS][8] -> [FAIL][9] ([i915#2842])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-tglb7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-kbl: [PASS][10] -> [FAIL][11] ([i915#2842])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-kbl: [PASS][12] -> [SKIP][13] ([fdo#109271])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl4/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-glk: [PASS][14] -> [FAIL][15] ([i915#2842]) +2 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-glk8/igt@gem_exec_fair@basic-pace@vecs0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-iclb: [PASS][16] -> [FAIL][17] ([i915#2849])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_whisper@basic-contexts:
- shard-glk: [PASS][18] -> [DMESG-WARN][19] ([i915#118] / [i915#95])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-glk3/igt@gem_exec_whisper@basic-contexts.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-glk1/igt@gem_exec_whisper@basic-contexts.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-iclb: [PASS][20] -> [FAIL][21] ([i915#2428])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-iclb7/igt@gem_mmap_gtt@cpuset-medium-copy.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb6/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_ppgtt@flink-and-close-vma-leak:
- shard-apl: NOTRUN -> [FAIL][22] ([i915#644])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl6/igt@gem_ppgtt@flink-and-close-vma-leak.html
* igt@gem_pwrite@basic-exhaustion:
- shard-apl: NOTRUN -> [WARN][23] ([i915#2658])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_render_copy@yf-tiled-to-vebox-linear:
- shard-iclb: NOTRUN -> [SKIP][24] ([i915#768])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb5/igt@gem_render_copy@yf-tiled-to-vebox-linear.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglb: NOTRUN -> [SKIP][25] ([i915#3297])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@vma-merge:
- shard-snb: NOTRUN -> [FAIL][26] ([i915#2724])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-snb7/igt@gem_userptr_blits@vma-merge.html
- shard-apl: NOTRUN -> [FAIL][27] ([i915#3318])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl7/igt@gem_userptr_blits@vma-merge.html
* igt@gen3_render_mixed_blits:
- shard-tglb: NOTRUN -> [SKIP][28] ([fdo#109289])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb5/igt@gen3_render_mixed_blits.html
- shard-iclb: NOTRUN -> [SKIP][29] ([fdo#109289])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb5/igt@gen3_render_mixed_blits.html
* igt@gen9_exec_parse@bb-large:
- shard-apl: NOTRUN -> [FAIL][30] ([i915#3296])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl8/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglb: NOTRUN -> [SKIP][31] ([fdo#112306])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb5/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
- shard-kbl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#1937])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
- shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#1937])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-glk: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#1937])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-glk8/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-iclb: NOTRUN -> [SKIP][35] ([fdo#110892])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb8/igt@i915_pm_rpm@modeset-non-lpsp.html
- shard-tglb: NOTRUN -> [SKIP][36] ([fdo#111644] / [i915#1397] / [i915#2411])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb6/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-tglb: NOTRUN -> [SKIP][37] ([fdo#111615]) +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
- shard-iclb: NOTRUN -> [SKIP][38] ([fdo#110723])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_chamelium@dp-mode-timings:
- shard-apl: NOTRUN -> [SKIP][39] ([fdo#109271] / [fdo#111827]) +23 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl3/igt@kms_chamelium@dp-mode-timings.html
* igt@kms_chamelium@hdmi-hpd-storm:
- shard-kbl: NOTRUN -> [SKIP][40] ([fdo#109271] / [fdo#111827]) +10 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl2/igt@kms_chamelium@hdmi-hpd-storm.html
* igt@kms_chamelium@vga-hpd-without-ddc:
- shard-snb: NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +18 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-snb5/igt@kms_chamelium@vga-hpd-without-ddc.html
* igt@kms_color@pipe-d-ctm-max:
- shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109278] / [i915#1149])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb4/igt@kms_color@pipe-d-ctm-max.html
* igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
- shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109284] / [fdo#111827]) +3 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb2/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
* igt@kms_color_chamelium@pipe-d-ctm-0-25:
- shard-glk: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +4 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-glk8/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
- shard-tglb: NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +3 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb2/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
- shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109278] / [fdo#109284] / [fdo#111827])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
* igt@kms_content_protection@atomic:
- shard-kbl: NOTRUN -> [TIMEOUT][47] ([i915#1319])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl6/igt@kms_content_protection@atomic.html
- shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109300] / [fdo#111066])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb4/igt@kms_content_protection@atomic.html
- shard-apl: NOTRUN -> [TIMEOUT][49] ([i915#1319])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl1/igt@kms_content_protection@atomic.html
- shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111828])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@uevent:
- shard-apl: NOTRUN -> [FAIL][51] ([i915#2105])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen:
- shard-tglb: [PASS][52] -> [FAIL][53] ([i915#2124])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb6/igt@kms_cursor_crc@pipe-a-cursor-128x42-onscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-32x32-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][54] ([i915#3319]) +1 similar issue
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb2/igt@kms_cursor_crc@pipe-b-cursor-32x32-rapid-movement.html
* igt@kms_cursor_crc@pipe-b-cursor-max-size-random:
- shard-glk: NOTRUN -> [SKIP][55] ([fdo#109271]) +27 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-glk9/igt@kms_cursor_crc@pipe-b-cursor-max-size-random.html
* igt@kms_cursor_crc@pipe-c-cursor-512x170-rapid-movement:
- shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109278]) +7 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb5/igt@kms_cursor_crc@pipe-c-cursor-512x170-rapid-movement.html
* igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][57] ([i915#3359]) +4 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-max-size-rapid-movement.html
* igt@kms_cursor_legacy@pipe-d-single-bo:
- shard-apl: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#533])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl2/igt@kms_cursor_legacy@pipe-d-single-bo.html
* igt@kms_dp_dsc@basic-dsc-enable-dp:
- shard-tglb: NOTRUN -> [SKIP][59] ([fdo#109349])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb7/igt@kms_dp_dsc@basic-dsc-enable-dp.html
- shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109349])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-dp.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-tglb: NOTRUN -> [SKIP][61] ([fdo#111825]) +15 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb8/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109274]) +3 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb1/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-iclb: [PASS][63] -> [FAIL][64] ([i915#79])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-iclb2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
- shard-apl: [PASS][65] -> [DMESG-WARN][66] ([i915#180]) +1 similar issue
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-snb: NOTRUN -> [SKIP][67] ([fdo#109271]) +389 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109280]) +9 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
- shard-apl: NOTRUN -> [FAIL][69] ([fdo#108145] / [i915#265]) +2 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-apl: NOTRUN -> [FAIL][70] ([i915#265])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
* igt@kms_plane_multiple@atomic-pipe-d-tiling-x:
- shard-kbl: NOTRUN -> [SKIP][71] ([fdo#109271]) +120 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl6/igt@kms_plane_multiple@atomic-pipe-d-tiling-x.html
* igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping:
- shard-apl: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#2733])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl7/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
- shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658]) +6 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl6/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
- shard-kbl: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#658]) +2 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl6/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
* igt@kms_psr@psr2_cursor_render:
- shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109441])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb7/igt@kms_psr@psr2_cursor_render.html
- shard-tglb: NOTRUN -> [FAIL][76] ([i915#132])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb7/igt@kms_psr@psr2_cursor_render.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [PASS][77] -> [SKIP][78] ([fdo#109441]) +1 similar issue
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_sysfs_edid_timing:
- shard-apl: NOTRUN -> [FAIL][79] ([IGT#2])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl6/igt@kms_sysfs_edid_timing.html
* igt@kms_vblank@pipe-d-wait-idle:
- shard-kbl: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#533])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl7/igt@kms_vblank@pipe-d-wait-idle.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#2437]) +1 similar issue
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglb: NOTRUN -> [SKIP][82] ([i915#2437])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb8/igt@kms_writeback@writeback-invalid-parameters.html
- shard-kbl: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#2437]) +1 similar issue
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl6/igt@kms_writeback@writeback-invalid-parameters.html
- shard-glk: NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#2437])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-glk6/igt@kms_writeback@writeback-invalid-parameters.html
- shard-iclb: NOTRUN -> [SKIP][85] ([i915#2437])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
- shard-apl: NOTRUN -> [SKIP][86] ([fdo#109271]) +269 similar issues
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl6/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html
* igt@prime_vgem@fence-flip-hang:
- shard-iclb: NOTRUN -> [SKIP][87] ([fdo#109295])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb3/igt@prime_vgem@fence-flip-hang.html
- shard-tglb: NOTRUN -> [SKIP][88] ([fdo#109295])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb3/igt@prime_vgem@fence-flip-hang.html
* igt@sysfs_clients@fair-1:
- shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#2994]) +4 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl6/igt@sysfs_clients@fair-1.html
* igt@sysfs_clients@fair-7:
- shard-iclb: NOTRUN -> [SKIP][90] ([i915#2994]) +1 similar issue
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb3/igt@sysfs_clients@fair-7.html
- shard-tglb: NOTRUN -> [SKIP][91] ([i915#2994]) +1 similar issue
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb3/igt@sysfs_clients@fair-7.html
* igt@sysfs_clients@recycle:
- shard-glk: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#2994]) +1 similar issue
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-glk9/igt@sysfs_clients@recycle.html
* igt@sysfs_clients@sema-10:
- shard-kbl: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#2994]) +3 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl3/igt@sysfs_clients@sema-10.html
* igt@tools_test@sysfs_l3_parity:
- shard-iclb: NOTRUN -> [SKIP][94] ([fdo#109307])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb3/igt@tools_test@sysfs_l3_parity.html
- shard-tglb: NOTRUN -> [SKIP][95] ([fdo#109307])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb3/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_eio@unwedge-stress:
- shard-iclb: [TIMEOUT][96] ([i915#2369] / [i915#2481] / [i915#3070]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-iclb7/igt@gem_eio@unwedge-stress.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb8/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][98] ([i915#2842]) -> [PASS][99] +1 similar issue
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-kbl: [FAIL][100] ([i915#2842]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs1.html
- shard-tglb: [FAIL][102] ([i915#2842]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-tglb1/igt@gem_exec_fair@basic-pace@vcs1.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-glk: [FAIL][104] ([i915#307]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-glk8/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-glk7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-apl: [DMESG-WARN][106] ([i915#180]) -> [PASS][107] +3 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl8/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_cursor_crc@pipe-a-cursor-64x21-sliding:
- shard-tglb: [FAIL][108] ([i915#2124]) -> [PASS][109] +1 similar issue
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-64x21-sliding.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-64x21-sliding.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-glk: [FAIL][110] ([i915#2346]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-kbl: [DMESG-WARN][112] ([i915#180]) -> [PASS][113] +3 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_psr@psr2_no_drrs:
- shard-iclb: [SKIP][114] ([fdo#109441]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-iclb7/igt@kms_psr@psr2_no_drrs.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-kbl: [DMESG-WARN][116] ([i915#180] / [i915#295]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
#### Warnings ####
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-iclb: [SKIP][118] ([i915#658]) -> [SKIP][119] ([i915#588])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglb: [INCOMPLETE][120] -> [WARN][121] ([i915#2681])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-tglb6/igt@i915_pm_rc6_residency@rc6-fence.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb7/igt@i915_pm_rc6_residency@rc6-fence.html
- shard-iclb: [WARN][122] ([i915#1804] / [i915#2684]) -> [WARN][123] ([i915#2681] / [i915#2684])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-iclb3/igt@i915_pm_rc6_residency@rc6-fence.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb8/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-iclb: [SKIP][124] ([i915#658]) -> [SKIP][125] ([i915#2920]) +1 similar issue
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-iclb5/igt@kms_psr2_sf@cursor-plane-update-sf.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
- shard-iclb: [SKIP][126] ([i915#2920]) -> [SKIP][127] ([i915#658]) +1 similar issue
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
* igt@runner@aborted:
- shard-kbl: ([FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133]) ([fdo#109271] / [i915#1436] / [i915#180] / [i915#1814] / [i915#3002] / [i915#602]) -> ([FAIL][134], [FAIL][135]) ([i915#3002])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl7/igt@runner@aborted.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl7/igt@runner@aborted.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl7/igt@runner@aborted.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl1/igt@runner@aborted.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl4/igt@runner@aborted.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-kbl3/igt@runner@aborted.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl4/igt@runner@aborted.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-kbl7/igt@runner@aborted.html
- shard-apl: ([FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140]) ([i915#180] / [i915#1814] / [i915#3002]) -> [FAIL][141] ([i915#180])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-apl2/igt@runner@aborted.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-apl7/igt@runner@aborted.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-apl2/igt@runner@aborted.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-apl1/igt@runner@aborted.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-apl6/igt@runner@aborted.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-apl2/igt@runner@aborted.html
- shard-tglb: ([FAIL][142], [FAIL][143]) ([i915#3002]) -> ([FAIL][144], [FAIL][145], [FAIL][146]) ([i915#2426] / [i915#3002])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-tglb7/igt@runner@aborted.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10014/shard-tglb1/igt@runner@aborted.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb1/igt@runner@aborted.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb5/igt@runner@aborted.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/shard-tglb1/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https:/
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5765/index.html
[-- Attachment #1.2: Type: text/html, Size: 35963 bytes --]
[-- Attachment #2: Type: text/plain, Size: 154 bytes --]
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-04-27 11:59 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-27 5:42 [igt-dev] [PATCH i-g-t] lib: Put edid_ar_svds where it's used Petri Latvala
2021-04-27 5:43 ` Joshi, Kunal1
2021-04-27 6:17 ` Petri Latvala
2021-04-27 6:18 ` Joshi, Kunal1
2021-04-27 6:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-04-27 11:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox