* [igt-dev] [PATCH] kms_chamelium: fix a compile warning
@ 2022-11-04 18:48 Alex Hung
2022-11-04 19:35 ` Mark Yacoub
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Alex Hung @ 2022-11-04 18:48 UTC (permalink / raw)
To: igt-dev; +Cc: markyacoub
Fix the following warning:
../tests/chamelium/kms_chamelium.c: In function ‘edid_stress_resolution’:
../tests/chamelium/kms_chamelium.c:2570:31: warning: declaration of ‘monitor_edid’ shadows a global declaration [-Wshadow]
2570 | monitor_edid *monitor_edid = &edids_list[i];
| ^~~~~~~~~~~~
In file included from ../lib/monitor_edids/dp_edids.h:15,
from ../tests/chamelium/kms_chamelium.c:33:
../lib/monitor_edids/monitor_edids_helper.h:25:3: note: shadowed declaration is here
25 | } monitor_edid;
| ^~~~~~~~~~~~
Fixes: 6a25c536 (kms_chamelium: Add new EDID stress resolution test)
Signed-off-by: Alex Hung <alex.hung@amd.com>
---
tests/chamelium/kms_chamelium.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/chamelium/kms_chamelium.c b/tests/chamelium/kms_chamelium.c
index c824e67e..09839f98 100644
--- a/tests/chamelium/kms_chamelium.c
+++ b/tests/chamelium/kms_chamelium.c
@@ -2567,13 +2567,13 @@ static void edid_stress_resolution(data_t *data, struct chamelium_port *port,
bool is_video_stable;
int screen_res_w, screen_res_h;
- monitor_edid *monitor_edid = &edids_list[i];
+ monitor_edid *edid = &edids_list[i];
igt_info("Testing out the EDID for %s\n",
- monitor_edid_get_name(monitor_edid));
+ monitor_edid_get_name(edid));
/* Getting and Setting the EDID on Chamelium. */
chamelium_edid = get_chameleon_edid_from_monitor_edid(
- chamelium, monitor_edid);
+ chamelium, edid);
chamelium_port_set_edid(data->chamelium, port, chamelium_edid);
free_chamelium_edid_from_monitor_edid(chamelium_edid);
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [igt-dev] [PATCH] kms_chamelium: fix a compile warning 2022-11-04 18:48 [igt-dev] [PATCH] kms_chamelium: fix a compile warning Alex Hung @ 2022-11-04 19:35 ` Mark Yacoub 2022-11-07 11:21 ` Petri Latvala 2022-11-04 19:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-11-05 9:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Mark Yacoub @ 2022-11-04 19:35 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev, markyacoub On Fri, Nov 4, 2022 at 2:49 PM Alex Hung <alex.hung@amd.com> wrote: > > Fix the following warning: > > ../tests/chamelium/kms_chamelium.c: In function ‘edid_stress_resolution’: > ../tests/chamelium/kms_chamelium.c:2570:31: warning: declaration of ‘monitor_edid’ shadows a global declaration [-Wshadow] > 2570 | monitor_edid *monitor_edid = &edids_list[i]; > | ^~~~~~~~~~~~ > In file included from ../lib/monitor_edids/dp_edids.h:15, > from ../tests/chamelium/kms_chamelium.c:33: > ../lib/monitor_edids/monitor_edids_helper.h:25:3: note: shadowed declaration is here > 25 | } monitor_edid; > | ^~~~~~~~~~~~ > > Fixes: 6a25c536 (kms_chamelium: Add new EDID stress resolution test) > Signed-off-by: Alex Hung <alex.hung@amd.com> Reviewed-by: Mark Yacoub <markyacoub@chromium.org> > --- > tests/chamelium/kms_chamelium.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/chamelium/kms_chamelium.c b/tests/chamelium/kms_chamelium.c > index c824e67e..09839f98 100644 > --- a/tests/chamelium/kms_chamelium.c > +++ b/tests/chamelium/kms_chamelium.c > @@ -2567,13 +2567,13 @@ static void edid_stress_resolution(data_t *data, struct chamelium_port *port, > bool is_video_stable; > int screen_res_w, screen_res_h; > > - monitor_edid *monitor_edid = &edids_list[i]; > + monitor_edid *edid = &edids_list[i]; > igt_info("Testing out the EDID for %s\n", > - monitor_edid_get_name(monitor_edid)); > + monitor_edid_get_name(edid)); > > /* Getting and Setting the EDID on Chamelium. */ > chamelium_edid = get_chameleon_edid_from_monitor_edid( > - chamelium, monitor_edid); > + chamelium, edid); > chamelium_port_set_edid(data->chamelium, port, chamelium_edid); > free_chamelium_edid_from_monitor_edid(chamelium_edid); > > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH] kms_chamelium: fix a compile warning 2022-11-04 19:35 ` Mark Yacoub @ 2022-11-07 11:21 ` Petri Latvala 0 siblings, 0 replies; 5+ messages in thread From: Petri Latvala @ 2022-11-07 11:21 UTC (permalink / raw) To: Mark Yacoub; +Cc: igt-dev, markyacoub On Fri, Nov 04, 2022 at 03:35:14PM -0400, Mark Yacoub wrote: > On Fri, Nov 4, 2022 at 2:49 PM Alex Hung <alex.hung@amd.com> wrote: > > > > Fix the following warning: > > > > ../tests/chamelium/kms_chamelium.c: In function ‘edid_stress_resolution’: > > ../tests/chamelium/kms_chamelium.c:2570:31: warning: declaration of ‘monitor_edid’ shadows a global declaration [-Wshadow] > > 2570 | monitor_edid *monitor_edid = &edids_list[i]; > > | ^~~~~~~~~~~~ > > In file included from ../lib/monitor_edids/dp_edids.h:15, > > from ../tests/chamelium/kms_chamelium.c:33: > > ../lib/monitor_edids/monitor_edids_helper.h:25:3: note: shadowed declaration is here > > 25 | } monitor_edid; > > | ^~~~~~~~~~~~ > > > > Fixes: 6a25c536 (kms_chamelium: Add new EDID stress resolution test) > > Signed-off-by: Alex Hung <alex.hung@amd.com> > Reviewed-by: Mark Yacoub <markyacoub@chromium.org> Merged, thanks for the fix! -- Petri Latvala > > --- > > tests/chamelium/kms_chamelium.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff --git a/tests/chamelium/kms_chamelium.c b/tests/chamelium/kms_chamelium.c > > index c824e67e..09839f98 100644 > > --- a/tests/chamelium/kms_chamelium.c > > +++ b/tests/chamelium/kms_chamelium.c > > @@ -2567,13 +2567,13 @@ static void edid_stress_resolution(data_t *data, struct chamelium_port *port, > > bool is_video_stable; > > int screen_res_w, screen_res_h; > > > > - monitor_edid *monitor_edid = &edids_list[i]; > > + monitor_edid *edid = &edids_list[i]; > > igt_info("Testing out the EDID for %s\n", > > - monitor_edid_get_name(monitor_edid)); > > + monitor_edid_get_name(edid)); > > > > /* Getting and Setting the EDID on Chamelium. */ > > chamelium_edid = get_chameleon_edid_from_monitor_edid( > > - chamelium, monitor_edid); > > + chamelium, edid); > > chamelium_port_set_edid(data->chamelium, port, chamelium_edid); > > free_chamelium_edid_from_monitor_edid(chamelium_edid); > > > > -- > > 2.34.1 > > ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for kms_chamelium: fix a compile warning 2022-11-04 18:48 [igt-dev] [PATCH] kms_chamelium: fix a compile warning Alex Hung 2022-11-04 19:35 ` Mark Yacoub @ 2022-11-04 19:41 ` Patchwork 2022-11-05 9:35 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2022-11-04 19:41 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5303 bytes --] == Series Details == Series: kms_chamelium: fix a compile warning URL : https://patchwork.freedesktop.org/series/110552/ State : success == Summary == CI Bug Log - changes from CI_DRM_12344 -> IGTPW_8047 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/index.html Participating hosts (41 -> 29) ------------------------------ Additional (1): bat-atsm-1 Missing (13): fi-bdw-samus bat-dg2-8 bat-dg2-9 fi-hsw-g3258 bat-adlp-6 bat-adlp-4 fi-ctg-p8600 bat-adln-1 bat-rplp-1 bat-rpls-1 bat-rpls-2 bat-dg2-11 bat-jsl-1 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8047: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@mman: - {bat-atsm-1}: NOTRUN -> [DMESG-FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/bat-atsm-1/igt@i915_selftest@live@mman.html Known issues ------------ Here are the changes found in IGTPW_8047 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [PASS][2] -> [INCOMPLETE][3] ([i915#4785]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html - fi-rkl-guc: [PASS][4] -> [INCOMPLETE][5] ([i915#4983]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/fi-rkl-guc/igt@i915_selftest@live@hangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/fi-rkl-guc/igt@i915_selftest@live@hangcheck.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-kefka: [PASS][6] -> [FAIL][7] ([i915#6298]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html * igt@runner@aborted: - fi-hsw-4770: NOTRUN -> [FAIL][8] ([fdo#109271] / [i915#4312] / [i915#5594]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/fi-hsw-4770/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [DMESG-FAIL][9] ([i915#5334]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5594]: https://gitlab.freedesktop.org/drm/intel/issues/5594 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078 [i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093 [i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094 [i915#6166]: https://gitlab.freedesktop.org/drm/intel/issues/6166 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6856]: https://gitlab.freedesktop.org/drm/intel/issues/6856 [i915#7125]: https://gitlab.freedesktop.org/drm/intel/issues/7125 [i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357 [i915#7358]: https://gitlab.freedesktop.org/drm/intel/issues/7358 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7044 -> IGTPW_8047 CI-20190529: 20190529 CI_DRM_12344: 36c4da734877fd1d69f0b9601dd7c3fa118d18f6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8047: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/index.html IGT_7044: dbeb6f92720292f8303182a0e649284cea5b11a6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/index.html [-- Attachment #2: Type: text/html, Size: 4817 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for kms_chamelium: fix a compile warning 2022-11-04 18:48 [igt-dev] [PATCH] kms_chamelium: fix a compile warning Alex Hung 2022-11-04 19:35 ` Mark Yacoub 2022-11-04 19:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2022-11-05 9:35 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2022-11-05 9:35 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 34703 bytes --] == Series Details == Series: kms_chamelium: fix a compile warning URL : https://patchwork.freedesktop.org/series/110552/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12344_full -> IGTPW_8047_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8047_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8047_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_8047/index.html Participating hosts (11 -> 6) ------------------------------ Missing (5): pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl shard-dg1 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8047_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_dc@dc9-dpms: - shard-iclb: [PASS][1] -> [INCOMPLETE][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-iclb6/igt@i915_pm_dc@dc9-dpms.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html Known issues ------------ Here are the changes found in IGTPW_8047_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@chamelium: - shard-tglb: NOTRUN -> [SKIP][3] ([fdo#111827]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb7/igt@feature_discovery@chamelium.html - shard-iclb: NOTRUN -> [SKIP][4] ([fdo#111827]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb5/igt@feature_discovery@chamelium.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-snb4/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_exec_balancer@parallel: - shard-iclb: [PASS][6] -> [SKIP][7] ([i915#4525]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-iclb1/igt@gem_exec_balancer@parallel.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb7/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][8] -> [FAIL][9] ([i915#2842]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-apl: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#4613]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_pxp@create-regular-buffer: - shard-iclb: NOTRUN -> [SKIP][11] ([i915#4270]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb5/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglb: NOTRUN -> [SKIP][12] ([i915#4270]) +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb2/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-iclb: NOTRUN -> [SKIP][13] ([i915#768]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb3/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [PASS][14] -> [FAIL][15] ([i915#4171]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-tglb7/igt@gem_softpin@evict-single-offset.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb3/igt@gem_softpin@evict-single-offset.html * igt@gem_softpin@noreloc-s3: - shard-snb: [PASS][16] -> [SKIP][17] ([fdo#109271]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-snb4/igt@gem_softpin@noreloc-s3.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-snb6/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglb: NOTRUN -> [SKIP][18] ([i915#3297]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb7/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-iclb: NOTRUN -> [SKIP][19] ([i915#3297]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb5/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271]) +83 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-snb7/igt@gem_vm_create@invalid-create.html * igt@gem_workarounds@suspend-resume: - shard-apl: [PASS][21] -> [DMESG-WARN][22] ([i915#180]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-apl1/igt@gem_workarounds@suspend-resume.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl6/igt@gem_workarounds@suspend-resume.html * igt@gen3_render_linear_blits: - shard-iclb: NOTRUN -> [SKIP][23] ([fdo#109289]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb5/igt@gen3_render_linear_blits.html - shard-tglb: NOTRUN -> [SKIP][24] ([fdo#109289]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb7/igt@gen3_render_linear_blits.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: NOTRUN -> [SKIP][25] ([i915#658]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb6/igt@i915_pm_dc@dc3co-vpb-simulation.html - shard-tglb: NOTRUN -> [SKIP][26] ([i915#1904]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb5/igt@i915_pm_dc@dc3co-vpb-simulation.html - shard-glk: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#658]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk7/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_lpsp@screens-disabled: - shard-tglb: NOTRUN -> [SKIP][28] ([i915#1902]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb1/igt@i915_pm_lpsp@screens-disabled.html - shard-iclb: NOTRUN -> [SKIP][29] ([i915#1902]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb7/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglb: NOTRUN -> [SKIP][30] ([fdo#109506] / [i915#2411]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#109293] / [fdo#109506]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb7/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [PASS][32] -> [INCOMPLETE][33] ([i915#4528]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-snb6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_3d: - shard-glk: [PASS][34] -> [DMESG-WARN][35] ([i915#118]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk9/igt@kms_3d.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk6/igt@kms_3d.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-glk: NOTRUN -> [SKIP][36] ([fdo#109271]) +46 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html - shard-iclb: NOTRUN -> [SKIP][37] ([i915#5286]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html - shard-tglb: NOTRUN -> [SKIP][38] ([i915#5286]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-glk: NOTRUN -> [FAIL][39] ([i915#5138]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk1/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#111614]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html - shard-iclb: NOTRUN -> [SKIP][41] ([fdo#110725] / [fdo#111614]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb5/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-iclb: NOTRUN -> [FAIL][42] ([i915#5138]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][43] ([fdo#111615]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109278] / [i915#3886]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb6/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html - shard-glk: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#3886]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#3886]) +6 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl8/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#6095]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb3/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109278]) +9 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb1/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs.html - shard-tglb: NOTRUN -> [SKIP][49] ([i915#3689] / [i915#6095]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb7/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][50] ([i915#3689]) +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb5/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#111615] / [i915#3689]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_chamelium@dp-crc-single: - shard-snb: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-snb4/igt@kms_chamelium@dp-crc-single.html - shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111827]) +6 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl3/igt@kms_chamelium@dp-crc-single.html - shard-tglb: NOTRUN -> [SKIP][54] ([fdo#109284] / [fdo#111827]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb7/igt@kms_chamelium@dp-crc-single.html - shard-glk: NOTRUN -> [SKIP][55] ([fdo#109271] / [fdo#111827]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk6/igt@kms_chamelium@dp-crc-single.html * igt@kms_color_chamelium@ctm-0-75: - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109284] / [fdo#111827]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb2/igt@kms_color_chamelium@ctm-0-75.html * igt@kms_content_protection@legacy: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#7118]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb2/igt@kms_content_protection@legacy.html - shard-iclb: NOTRUN -> [SKIP][58] ([i915#7118]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-1: - shard-apl: NOTRUN -> [INCOMPLETE][59] ([i915#1319] / [i915#7121] / [i915#7173]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl2/igt@kms_content_protection@legacy@pipe-a-dp-1.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109274]) +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html - shard-tglb: NOTRUN -> [SKIP][61] ([fdo#109274] / [fdo#111825]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-glk: [PASS][62] -> [FAIL][63] ([i915#2346]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_flip@2x-nonexisting-fb: - shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271]) +153 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl1/igt@kms_flip@2x-nonexisting-fb.html - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][66] ([i915#2587] / [i915#2672]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html - shard-tglb: NOTRUN -> [SKIP][67] ([i915#2587] / [i915#2672]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][68] ([i915#2672]) +2 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][69] ([i915#3555]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#109280] / [fdo#111825]) +9 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy: - shard-tglb: NOTRUN -> [SKIP][71] ([i915#6497]) +4 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109280]) +10 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_plane_lowres@tiling-y@pipe-c-edp-1: - shard-tglb: NOTRUN -> [SKIP][73] ([i915#3536]) +3 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb7/igt@kms_plane_lowres@tiling-y@pipe-c-edp-1.html - shard-iclb: NOTRUN -> [SKIP][74] ([i915#3536]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb1/igt@kms_plane_lowres@tiling-y@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-iclb: [PASS][75] -> [SKIP][76] ([i915#5176]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-iclb1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1: - shard-iclb: [PASS][77] -> [SKIP][78] ([i915#5235]) +2 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-iclb8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglb: NOTRUN -> [SKIP][79] ([i915#6524]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb8/igt@kms_prime@basic-modeset-hybrid.html - shard-iclb: NOTRUN -> [SKIP][80] ([i915#6524]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb7/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-apl: NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#658]) +2 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl3/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr@psr2_basic: - shard-tglb: NOTRUN -> [FAIL][82] ([i915#132] / [i915#3467]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb3/igt@kms_psr@psr2_basic.html - shard-iclb: NOTRUN -> [SKIP][83] ([fdo#109441]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb8/igt@kms_psr@psr2_basic.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [PASS][84] -> [SKIP][85] ([fdo#109441]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglb: NOTRUN -> [SKIP][86] ([fdo#111615] / [i915#5289]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vblank@pipe-a-query-forked-busy-hang: - shard-apl: [PASS][87] -> [SKIP][88] ([fdo#109271]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-apl8/igt@kms_vblank@pipe-a-query-forked-busy-hang.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl7/igt@kms_vblank@pipe-a-query-forked-busy-hang.html - shard-glk: [PASS][89] -> [SKIP][90] ([fdo#109271]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk6/igt@kms_vblank@pipe-a-query-forked-busy-hang.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk7/igt@kms_vblank@pipe-a-query-forked-busy-hang.html * igt@kms_writeback@writeback-invalid-parameters: - shard-apl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2437]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl6/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@stress-open-close: - shard-glk: [PASS][92] -> [INCOMPLETE][93] ([i915#5213]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk7/igt@perf@stress-open-close.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk9/igt@perf@stress-open-close.html * igt@sysfs_clients@fair-0: - shard-tglb: NOTRUN -> [SKIP][94] ([i915#2994]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb8/igt@sysfs_clients@fair-0.html - shard-glk: NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#2994]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk8/igt@sysfs_clients@fair-0.html * igt@sysfs_clients@pidname: - shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2994]) +2 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl6/igt@sysfs_clients@pidname.html #### Possible fixes #### * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [SKIP][97] ([i915#4525]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-iclb7/igt@gem_exec_balancer@parallel-out-fence.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][99] ([i915#2846]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk9/igt@gem_exec_fair@basic-deadline.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk9/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][101] ([i915#2842]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglb: [FAIL][103] ([i915#2842]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][105] ([i915#2842]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][107] ([i915#2190]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-tglb7/igt@gem_huc_copy@huc-copy.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb5/igt@gem_huc_copy@huc-copy.html * igt@gem_workarounds@suspend-resume-fd: - shard-apl: [DMESG-WARN][109] ([i915#180]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-apl6/igt@gem_workarounds@suspend-resume-fd.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl8/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [DMESG-WARN][111] ([i915#5566] / [i915#716]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-apl1/igt@gen9_exec_parse@allowed-single.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [FAIL][113] ([i915#3989] / [i915#454]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-iclb3/igt@i915_pm_dc@dc6-psr.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb8/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][115] ([fdo#109271]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-apl3/igt@i915_pm_dc@dc9-dpms.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl8/igt@i915_pm_dc@dc9-dpms.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1: - shard-glk: [FAIL][117] ([i915#2521]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [INCOMPLETE][119] ([i915#180] / [i915#1982]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][121] ([i915#79]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][123] ([i915#2122]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a1-hdmi-a2.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk5/igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a1-hdmi-a2.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [SKIP][125] ([i915#433]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-tglb6/igt@kms_hdmi_inject@inject-audio.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [SKIP][127] ([fdo#109441]) -> [PASS][128] +3 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-iclb5/igt@kms_psr@psr2_no_drrs.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb2/igt@kms_psr@psr2_no_drrs.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [SKIP][129] ([i915#4525]) -> [FAIL][130] ([i915#6117]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-iclb3/igt@gem_exec_balancer@parallel-ordering.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_pread@exhaustion: - shard-apl: [INCOMPLETE][131] ([i915#7248]) -> [WARN][132] ([i915#2658]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-apl6/igt@gem_pread@exhaustion.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-apl8/igt@gem_pread@exhaustion.html - shard-tglb: [WARN][133] ([i915#2658]) -> [INCOMPLETE][134] ([i915#7248]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-tglb2/igt@gem_pread@exhaustion.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-tglb6/igt@gem_pread@exhaustion.html - shard-glk: [WARN][135] ([i915#2658]) -> [INCOMPLETE][136] ([i915#7248]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-glk7/igt@gem_pread@exhaustion.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-glk5/igt@gem_pread@exhaustion.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][137] ([i915#2920]) -> [SKIP][138] ([i915#658]) +1 similar issue [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12344/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/shard-iclb1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [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#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7121]: https://gitlab.freedesktop.org/drm/intel/issues/7121 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7044 -> IGTPW_8047 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12344: 36c4da734877fd1d69f0b9601dd7c3fa118d18f6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8047: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8047/index.html IGT_7044: dbeb6f92720292f8303182a0e649284cea5b11a6 @ 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_8047/index.html [-- Attachment #2: Type: text/html, Size: 42261 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-11-07 11:21 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-11-04 18:48 [igt-dev] [PATCH] kms_chamelium: fix a compile warning Alex Hung 2022-11-04 19:35 ` Mark Yacoub 2022-11-07 11:21 ` Petri Latvala 2022-11-04 19:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-11-05 9:35 ` [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