* [igt-dev] [PATCH i-g-t v2] chamelium: Handle errors when fetching AdapterAllowed
@ 2023-01-04 13:10 Petri Latvala
2023-01-04 14:30 ` Knop, Ryszard
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Petri Latvala @ 2023-01-04 13:10 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala
Not setting AdapterAllowed in .igtrc should be considered a valid
configuration. The default value of 'false' from
g_key_file_get_boolean when the field is missing is exactly what we
want to use, and storing the missing field error in the 'error'
variable leads to an error such as
(kms_chamelium:1713) igt_chamelium-WARNING: Failed to read chamelium port ID for DP-3: Key file does not have key “AdapterAllowed” in group “Chamelium:HDMI-A-2”
v2: Check if the field exists first to get syntax validation
happening, handle the error accordingly by bailing out (Ryszard)
Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Ryszard Knop <ryszard.knop@intel.com>
---
lib/igt_chamelium.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
index 79920de1..a235f3c8 100644
--- a/lib/igt_chamelium.c
+++ b/lib/igt_chamelium.c
@@ -2476,8 +2476,15 @@ static bool chamelium_read_port_mappings(struct chamelium *chamelium,
goto out;
}
- port->adapter_allowed = g_key_file_get_boolean(igt_key_file, group,
- "AdapterAllowed", &error);
+ if (g_key_file_has_key(igt_key_file, group, "AdapterAllowed", NULL)) {
+ port->adapter_allowed = g_key_file_get_boolean(igt_key_file, group,
+ "AdapterAllowed", &error);
+ if (error) {
+ igt_warn("Unable to read AdapterAllowed: %s\n", error->message);
+ ret = false;
+ goto out;
+ }
+ }
for (j = 0;
j < res->count_connectors && !port->connector_id;
--
2.30.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [igt-dev] [PATCH i-g-t v2] chamelium: Handle errors when fetching AdapterAllowed 2023-01-04 13:10 [igt-dev] [PATCH i-g-t v2] chamelium: Handle errors when fetching AdapterAllowed Petri Latvala @ 2023-01-04 14:30 ` Knop, Ryszard 2023-01-04 17:44 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-01-04 22:41 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Knop, Ryszard @ 2023-01-04 14:30 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Latvala, Petri LGTM Reviewed-by: Ryszard Knop <ryszard.knop@intel.com> On Wed, 2023-01-04 at 15:10 +0200, Petri Latvala wrote: > Not setting AdapterAllowed in .igtrc should be considered a valid > configuration. The default value of 'false' from > g_key_file_get_boolean when the field is missing is exactly what we > want to use, and storing the missing field error in the 'error' > variable leads to an error such as > > (kms_chamelium:1713) igt_chamelium-WARNING: Failed to read chamelium port ID for DP-3: Key file does not have key “AdapterAllowed” in group “Chamelium:HDMI-A-2” > > v2: Check if the field exists first to get syntax validation > happening, handle the error accordingly by bailing out (Ryszard) > > Signed-off-by: Petri Latvala <petri.latvala@intel.com> > Cc: Ryszard Knop <ryszard.knop@intel.com> > --- > lib/igt_chamelium.c | 11 +++++++++-- > 1 file changed, 9 insertions(+), 2 deletions(-) > > diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c > index 79920de1..a235f3c8 100644 > --- a/lib/igt_chamelium.c > +++ b/lib/igt_chamelium.c > @@ -2476,8 +2476,15 @@ static bool chamelium_read_port_mappings(struct chamelium *chamelium, > goto out; > } > > - port->adapter_allowed = g_key_file_get_boolean(igt_key_file, group, > - "AdapterAllowed", &error); > + if (g_key_file_has_key(igt_key_file, group, "AdapterAllowed", NULL)) { > + port->adapter_allowed = g_key_file_get_boolean(igt_key_file, group, > + "AdapterAllowed", &error); > + if (error) { > + igt_warn("Unable to read AdapterAllowed: %s\n", error->message); > + ret = false; > + goto out; > + } > + } > > for (j = 0; > j < res->count_connectors && !port->connector_id; ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for chamelium: Handle errors when fetching AdapterAllowed 2023-01-04 13:10 [igt-dev] [PATCH i-g-t v2] chamelium: Handle errors when fetching AdapterAllowed Petri Latvala 2023-01-04 14:30 ` Knop, Ryszard @ 2023-01-04 17:44 ` Patchwork 2023-01-04 22:41 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-01-04 17:44 UTC (permalink / raw) To: Petri Latvala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3359 bytes --] == Series Details == Series: chamelium: Handle errors when fetching AdapterAllowed URL : https://patchwork.freedesktop.org/series/112398/ State : success == Summary == CI Bug Log - changes from CI_DRM_12546 -> IGTPW_8299 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/index.html Participating hosts (43 -> 41) ------------------------------ Missing (2): fi-bsw-kefka fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8299 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-n3050: [PASS][1] -> [FAIL][2] ([i915#6298]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - {bat-adlp-6}: [DMESG-WARN][3] ([i915#2867]) -> [PASS][4] +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/bat-adlp-6/igt@gem_exec_suspend@basic-s0@smem.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/bat-adlp-6/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@reset: - {bat-rpls-1}: [DMESG-FAIL][5] ([i915#4983]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/bat-rpls-1/igt@i915_selftest@live@reset.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@workarounds: - {bat-adln-1}: [INCOMPLETE][7] -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/bat-adln-1/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/bat-adln-1/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7107 -> IGTPW_8299 CI-20190529: 20190529 CI_DRM_12546: 07a684fbd4d0f5e284e8a782e0298f772fc4164e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8299: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/index.html IGT_7107: 4f22b49ee353406c14ce8bb3151ebe3ce4e6e9be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +++ 150 lines --- 25 lines == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/index.html [-- Attachment #2: Type: text/html, Size: 3781 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for chamelium: Handle errors when fetching AdapterAllowed 2023-01-04 13:10 [igt-dev] [PATCH i-g-t v2] chamelium: Handle errors when fetching AdapterAllowed Petri Latvala 2023-01-04 14:30 ` Knop, Ryszard 2023-01-04 17:44 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-01-04 22:41 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-01-04 22:41 UTC (permalink / raw) To: Petri Latvala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 26697 bytes --] == Series Details == Series: chamelium: Handle errors when fetching AdapterAllowed URL : https://patchwork.freedesktop.org/series/112398/ State : success == Summary == CI Bug Log - changes from CI_DRM_12546_full -> IGTPW_8299_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/index.html Participating hosts (13 -> 11) ------------------------------ Additional (1): shard-rkl0 Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8299_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180: - {shard-dg1}: [PASS][1] -> [DMESG-WARN][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-dg1-18/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-dg1-17/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html * igt@kms_plane_alpha_blend@coverage-7efc: - {shard-tglu-9}: NOTRUN -> [SKIP][3] +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-tglu-9/igt@kms_plane_alpha_blend@coverage-7efc.html Known issues ------------ Here are the changes found in IGTPW_8299_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][4] -> [FAIL][5] ([i915#2842]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][6] -> [FAIL][7] ([i915#2842]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-apl: [PASS][8] -> [INCOMPLETE][9] ([i915#7708]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-apl7/igt@gem_partial_pwrite_pread@writes-after-reads.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-apl3/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][10] -> [SKIP][11] ([fdo#109271]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-apl7/igt@i915_pm_dc@dc9-dpms.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-apl3/igt@i915_pm_dc@dc9-dpms.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1: - shard-apl: [PASS][12] -> [FAIL][13] ([i915#2521]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-apl2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#3886]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-apl3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_chamelium@vga-hpd: - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [fdo#111827]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-apl1/igt@kms_chamelium@vga-hpd.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-glk: [PASS][16] -> [FAIL][17] ([i915#2346]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][18] ([fdo#109271]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-glk4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: - shard-glk: [PASS][19] -> [FAIL][20] ([i915#79]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-dp-1: - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271]) +23 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-apl6/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-dp-1.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - {shard-rkl}: [FAIL][22] ([i915#7742]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html * igt@gem_eio@reset-stress: - {shard-dg1}: [FAIL][24] ([i915#5784]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-dg1-13/igt@gem_eio@reset-stress.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_eio@suspend: - {shard-rkl}: [FAIL][26] ([i915#7052]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-4/igt@gem_eio@suspend.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-2/igt@gem_eio@suspend.html * igt@gem_exec_balancer@fairslice: - {shard-rkl}: [SKIP][28] ([i915#6259]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-5/igt@gem_exec_balancer@fairslice.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-1/igt@gem_exec_balancer@fairslice.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][30] ([i915#2846]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-glk8/igt@gem_exec_fair@basic-deadline.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-glk9/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@vcs0: - {shard-rkl}: [FAIL][32] ([i915#2842]) -> [PASS][33] +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [FAIL][34] ([i915#2842]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-glk7/igt@gem_exec_fair@basic-pace@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-glk8/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - {shard-rkl}: [SKIP][36] ([i915#3281]) -> [PASS][37] +4 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-1/igt@gem_exec_reloc@basic-wc-read-noreloc.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-apl: [INCOMPLETE][38] ([i915#7708]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-apl2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-apl6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_userptr_blits@forbidden-operations: - {shard-rkl}: [SKIP][40] ([i915#3282]) -> [PASS][41] +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@allowed-single: - {shard-rkl}: [SKIP][42] ([i915#2527]) -> [PASS][43] +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-3/igt@gen9_exec_parse@allowed-single.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-5/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - {shard-dg1}: [FAIL][44] ([i915#3591]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - {shard-rkl}: [WARN][46] ([i915#2681]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-dg1}: [SKIP][48] ([i915#1397]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-dg1-17/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - {shard-rkl}: [SKIP][50] ([i915#1397]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rps@engine-order: - shard-apl: [FAIL][52] ([i915#6537]) -> [PASS][53] [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-apl7/igt@i915_pm_rps@engine-order.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-apl1/igt@i915_pm_rps@engine-order.html * igt@i915_selftest@live@gt_heartbeat: - shard-glk: [DMESG-FAIL][54] ([i915#5334]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-glk5/igt@i915_selftest@live@gt_heartbeat.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-glk1/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - {shard-rkl}: [DMESG-FAIL][56] ([i915#4258]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-6/igt@i915_selftest@live@gt_pm.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-2/igt@i915_selftest@live@gt_pm.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - {shard-tglu}: [SKIP][58] ([i915#1845] / [i915#7651]) -> [PASS][59] +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-tglu-6/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-tglu-2/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - {shard-tglu}: [SKIP][60] ([i915#7651]) -> [PASS][61] +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-tglu-6/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-tglu-8/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_flip@flip-vs-suspend-interruptible@b-vga1: - shard-snb: [DMESG-WARN][62] ([i915#5090]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-snb7/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - {shard-rkl}: [SKIP][64] ([i915#1849] / [i915#4098]) -> [PASS][65] +5 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_plane@plane-panning-bottom-right@pipe-a-planes: - {shard-rkl}: [SKIP][66] ([i915#1849]) -> [PASS][67] +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-1/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html * igt@kms_properties@plane-properties-atomic: - {shard-rkl}: [SKIP][68] -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-1/igt@kms_properties@plane-properties-atomic.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr@cursor_mmap_cpu: - {shard-rkl}: [SKIP][70] ([i915#1072]) -> [PASS][71] +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-5/igt@kms_psr@cursor_mmap_cpu.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_vblank@pipe-b-ts-continuation-idle: - {shard-rkl}: [SKIP][72] ([i915#1845] / [i915#4098]) -> [PASS][73] +15 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-2/igt@kms_vblank@pipe-b-ts-continuation-idle.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-6/igt@kms_vblank@pipe-b-ts-continuation-idle.html * igt@prime_vgem@basic-write: - {shard-rkl}: [SKIP][74] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-6/igt@prime_vgem@basic-write.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - {shard-rkl}: [SKIP][76] ([fdo#109295] / [fdo#111656] / [i915#3708]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-rkl-4/igt@prime_vgem@coherency-gtt.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-rkl-5/igt@prime_vgem@coherency-gtt.html * igt@sysfs_heartbeat_interval@precise@vecs0: - {shard-dg1}: [FAIL][78] ([i915#1755]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12546/shard-dg1-15/igt@sysfs_heartbeat_interval@precise@vecs0.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/shard-dg1-12/igt@sysfs_heartbeat_interval@precise@vecs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7681]: https://gitlab.freedesktop.org/drm/intel/issues/7681 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7708]: https://gitlab.freedesktop.org/drm/intel/issues/7708 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7107 -> IGTPW_8299 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12546: 07a684fbd4d0f5e284e8a782e0298f772fc4164e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8299: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/index.html IGT_7107: 4f22b49ee353406c14ce8bb3151ebe3ce4e6e9be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8299/index.html [-- Attachment #2: Type: text/html, Size: 21227 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-01-04 22:41 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-04 13:10 [igt-dev] [PATCH i-g-t v2] chamelium: Handle errors when fetching AdapterAllowed Petri Latvala 2023-01-04 14:30 ` Knop, Ryszard 2023-01-04 17:44 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-01-04 22:41 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox