* [igt-dev] [PATCH i-g-t] runner: Show more elements of the signaler's argv[]
@ 2019-09-23 11:20 Chris Wilson
2019-09-23 12:27 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Chris Wilson @ 2019-09-23 11:20 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala
/proc/$pid/cmdline is the entire argv[] including NUL-terminator.
Replace the NULs with spaces so we get a better idea of who the
signaler was, as often it is a subprocess (such as a child of sudo,
or worse java).
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Petri Latvala <petri.latvala@intel.com>
---
runner/executor.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/runner/executor.c b/runner/executor.c
index f7183293d..91e8a7b20 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -625,7 +625,12 @@ static const char *get_cmdline(pid_t pid, char *buf, size_t len)
if (len < 0)
return "unknown";
- buf[len] = '\0';
+ /* cmdline is the whole argv[], completed with NUL-terminators */
+ for (size_t i = 0; i < len; i++)
+ if (buf[i] == '\0')
+ buf[i] = ' ';
+
+ buf[len] = '\0'; /* but make sure that we return a valid string! */
return buf;
}
@@ -907,7 +912,7 @@ static int monitor_output(pid_t child,
} else {
/* We're dying, so we're taking them with us */
if (settings->log_level >= LOG_LEVEL_NORMAL) {
- char comm[80];
+ char comm[120];
outf("Abort requested by %s [%d] via %s, terminating children\n",
get_cmdline(siginfo.ssi_pid, comm, sizeof(comm)),
--
2.23.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for runner: Show more elements of the signaler's argv[] 2019-09-23 11:20 [igt-dev] [PATCH i-g-t] runner: Show more elements of the signaler's argv[] Chris Wilson @ 2019-09-23 12:27 ` Patchwork 2019-09-23 13:08 ` [igt-dev] [PATCH i-g-t] " Petri Latvala 2019-09-23 18:52 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2019-09-23 12:27 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: runner: Show more elements of the signaler's argv[] URL : https://patchwork.freedesktop.org/series/67082/ State : success == Summary == CI Bug Log - changes from IGT_5197 -> IGTPW_3489 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/67082/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3489 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@reload: - fi-icl-u3: [PASS][1] -> [DMESG-WARN][2] ([fdo#107724] / [fdo#111214]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/fi-icl-u3/igt@i915_module_load@reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/fi-icl-u3/igt@i915_module_load@reload.html * igt@i915_pm_rpm@module-reload: - fi-icl-u3: [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/fi-icl-u3/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/fi-icl-u3/igt@i915_pm_rpm@module-reload.html #### Possible fixes #### * igt@gem_ctx_param@basic: - fi-icl-u3: [DMESG-WARN][5] ([fdo#107724]) -> [PASS][6] +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/fi-icl-u3/igt@gem_ctx_param@basic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/fi-icl-u3/igt@gem_ctx_param@basic.html * igt@kms_chamelium@hdmi-crc-fast: - fi-icl-u2: [FAIL][7] ([fdo#109635 ]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/fi-icl-u2/igt@kms_chamelium@hdmi-crc-fast.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/fi-icl-u2/igt@kms_chamelium@hdmi-crc-fast.html #### Warnings #### * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][9] ([fdo#111407]) -> [FAIL][10] ([fdo#111045] / [fdo#111096]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#109635 ]: https://bugs.freedesktop.org/show_bug.cgi?id=109635 [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#111214]: https://bugs.freedesktop.org/show_bug.cgi?id=111214 [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 [fdo#111600]: https://bugs.freedesktop.org/show_bug.cgi?id=111600 Participating hosts (54 -> 48) ------------------------------ Additional (1): fi-icl-dsi Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5197 -> IGTPW_3489 CI-20190529: 20190529 CI_DRM_6939: f839fe27dcaf8e4e0716c0b83a9481df3a1de27e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3489: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/ IGT_5197: aa534ff47fd2f455c8be9e59eae807695b87fcdd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] runner: Show more elements of the signaler's argv[] 2019-09-23 11:20 [igt-dev] [PATCH i-g-t] runner: Show more elements of the signaler's argv[] Chris Wilson 2019-09-23 12:27 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-09-23 13:08 ` Petri Latvala 2019-09-23 18:52 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Petri Latvala @ 2019-09-23 13:08 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev On Mon, Sep 23, 2019 at 12:20:11PM +0100, Chris Wilson wrote: > /proc/$pid/cmdline is the entire argv[] including NUL-terminator. > Replace the NULs with spaces so we get a better idea of who the > signaler was, as often it is a subprocess (such as a child of sudo, > or worse java). > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Petri Latvala <petri.latvala@intel.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com> > --- > runner/executor.c | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/runner/executor.c b/runner/executor.c > index f7183293d..91e8a7b20 100644 > --- a/runner/executor.c > +++ b/runner/executor.c > @@ -625,7 +625,12 @@ static const char *get_cmdline(pid_t pid, char *buf, size_t len) > if (len < 0) > return "unknown"; > > - buf[len] = '\0'; > + /* cmdline is the whole argv[], completed with NUL-terminators */ > + for (size_t i = 0; i < len; i++) > + if (buf[i] == '\0') > + buf[i] = ' '; > + > + buf[len] = '\0'; /* but make sure that we return a valid string! */ > return buf; > } > > @@ -907,7 +912,7 @@ static int monitor_output(pid_t child, > } else { > /* We're dying, so we're taking them with us */ > if (settings->log_level >= LOG_LEVEL_NORMAL) { > - char comm[80]; > + char comm[120]; > > outf("Abort requested by %s [%d] via %s, terminating children\n", > get_cmdline(siginfo.ssi_pid, comm, sizeof(comm)), > -- > 2.23.0 > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for runner: Show more elements of the signaler's argv[] 2019-09-23 11:20 [igt-dev] [PATCH i-g-t] runner: Show more elements of the signaler's argv[] Chris Wilson 2019-09-23 12:27 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-09-23 13:08 ` [igt-dev] [PATCH i-g-t] " Petri Latvala @ 2019-09-23 18:52 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2019-09-23 18:52 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: runner: Show more elements of the signaler's argv[] URL : https://patchwork.freedesktop.org/series/67082/ State : failure == Summary == CI Bug Log - changes from IGT_5197_full -> IGTPW_3489_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_3489_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_3489_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://patchwork.freedesktop.org/api/1.0/series/67082/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3489_full: ### IGT changes ### #### Possible regressions #### * igt@perf_pmu@cpu-hotplug: - shard-glk: [PASS][1] -> [TIMEOUT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-glk3/igt@perf_pmu@cpu-hotplug.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-glk5/igt@perf_pmu@cpu-hotplug.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@gem_mmap_gtt@cpuset-big-copy-odd}: - shard-glk: [PASS][3] -> [TIMEOUT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-glk2/igt@gem_mmap_gtt@cpuset-big-copy-odd.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-glk5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html Known issues ------------ Here are the changes found in IGTPW_3489_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_shared@q-in-order-bsd2: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#109276]) +11 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb1/igt@gem_ctx_shared@q-in-order-bsd2.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb6/igt@gem_ctx_shared@q-in-order-bsd2.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#110854]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb4/igt@gem_exec_balancer@smoke.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb3/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@independent-bsd: - shard-iclb: [PASS][9] -> [SKIP][10] ([fdo#111325]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb8/igt@gem_exec_schedule@independent-bsd.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb2/igt@gem_exec_schedule@independent-bsd.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-kbl: [PASS][11] -> [SKIP][12] ([fdo#109271]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-kbl6/igt@i915_pm_rc6_residency@rc6-accuracy.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-kbl2/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_suspend@fence-restore-untiled: - shard-apl: [PASS][13] -> [DMESG-WARN][14] ([fdo#108566]) +4 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-apl8/igt@i915_suspend@fence-restore-untiled.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-apl2/igt@i915_suspend@fence-restore-untiled.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-glk: [PASS][15] -> [FAIL][16] ([fdo#105363]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [PASS][17] -> [INCOMPLETE][18] ([fdo#103540]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-hsw4/igt@kms_flip@flip-vs-suspend.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-hsw6/igt@kms_flip@flip-vs-suspend.html - shard-snb: [PASS][19] -> [INCOMPLETE][20] ([fdo#105411]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-snb2/igt@kms_flip@flip-vs-suspend.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-snb1/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [PASS][21] -> [FAIL][22] ([fdo#103167]) +4 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [PASS][23] -> [DMESG-WARN][24] ([fdo#108566]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_psr@psr2_basic: - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109441]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb2/igt@kms_psr@psr2_basic.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb8/igt@kms_psr@psr2_basic.html * igt@kms_setmode@basic: - shard-apl: [PASS][27] -> [FAIL][28] ([fdo#99912]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-apl1/igt@kms_setmode@basic.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-apl8/igt@kms_setmode@basic.html #### Possible fixes #### * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [SKIP][29] ([fdo#110841]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb7/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [SKIP][31] ([fdo#111325]) -> [PASS][32] +5 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_suspend@basic-s4-devices: - shard-iclb: [FAIL][33] ([fdo#111699]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb4/igt@gem_exec_suspend@basic-s4-devices.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb8/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_tiled_swapping@non-threaded: - shard-apl: [DMESG-WARN][35] ([fdo#108686]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-apl4/igt@gem_tiled_swapping@non-threaded.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-apl1/igt@gem_tiled_swapping@non-threaded.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][37] ([fdo#108566]) -> [PASS][38] +6 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-apl2/igt@gem_workarounds@suspend-resume-context.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-apl4/igt@gem_workarounds@suspend-resume-context.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-kbl: [DMESG-WARN][39] ([fdo#108566]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-kbl4/igt@i915_suspend@fence-restore-tiled2untiled.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-kbl1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-kbl: [FAIL][41] ([fdo#105363]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-kbl4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-kbl4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@wf_vblank-ts-check: - shard-apl: [INCOMPLETE][43] ([fdo#103927]) -> [PASS][44] +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-apl1/igt@kms_flip@wf_vblank-ts-check.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-apl1/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-apl: [FAIL][45] ([fdo#103167]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html - shard-kbl: [FAIL][47] ([fdo#103167]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-glk: [FAIL][49] ([fdo#103167]) -> [PASS][50] +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-glk7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-iclb: [FAIL][51] ([fdo#103167]) -> [PASS][52] +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [SKIP][53] ([fdo#109441]) -> [PASS][54] +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb4/igt@kms_psr@psr2_cursor_plane_onoff.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [SKIP][55] ([fdo#109276]) -> [PASS][56] +17 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb7/igt@prime_vgem@fence-wait-bsd2.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [FAIL][57] ([fdo#111329]) -> [SKIP][58] ([fdo#109276]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb5/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-rc6-bsd2: - shard-iclb: [SKIP][59] ([fdo#109276]) -> [FAIL][60] ([fdo#111330]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb5/igt@gem_mocs_settings@mocs-rc6-bsd2.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb4/igt@gem_mocs_settings@mocs-rc6-bsd2.html * igt@gem_mocs_settings@mocs-reset-bsd2: - shard-iclb: [FAIL][61] ([fdo#111330]) -> [SKIP][62] ([fdo#109276]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5197/shard-iclb4/igt@gem_mocs_settings@mocs-reset-bsd2.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/shard-iclb3/igt@gem_mocs_settings@mocs-reset-bsd2.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#111699]: https://bugs.freedesktop.org/show_bug.cgi?id=111699 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (7 -> 6) ------------------------------ Missing (1): shard-skl Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5197 -> IGTPW_3489 CI-20190529: 20190529 CI_DRM_6939: f839fe27dcaf8e4e0716c0b83a9481df3a1de27e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3489: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/ IGT_5197: aa534ff47fd2f455c8be9e59eae807695b87fcdd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3489/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-09-23 18:52 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-09-23 11:20 [igt-dev] [PATCH i-g-t] runner: Show more elements of the signaler's argv[] Chris Wilson 2019-09-23 12:27 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-09-23 13:08 ` [igt-dev] [PATCH i-g-t] " Petri Latvala 2019-09-23 18:52 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox