[OE-core] [PATCH 03/10] toaster.bbclass: fix crash on buildstats collection

Damian, Alexandru alexandru.damian at intel.com
Thu Jan 2 09:24:49 UTC 2014


Just a heads-up, this is a stand-alone patch, not a series, despite the
subject line :(

Alex


On Wed, Dec 18, 2013 at 7:24 PM, Alex DAMIAN <alexandru.damian at intel.com>wrote:

> From: Alexandru DAMIAN <alexandru.damian at intel.com>
>
> Toaster needs buildstats to be enabled in order to
> collect task statistics. The toaster.bbclass didn't
> have a guard to stop task data collection if the buildstats
> weren't enabled, leading to a crash.
>
> This patch verifies that the task variables are defined before
> trying to use them.
>
> Signed-off-by: Alexandru DAMIAN <alexandru.damian at intel.com>
> ---
>  meta/classes/toaster.bbclass | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/meta/classes/toaster.bbclass b/meta/classes/toaster.bbclass
> index e1a93b5..08c7bfa 100644
> --- a/meta/classes/toaster.bbclass
> +++ b/meta/classes/toaster.bbclass
> @@ -165,6 +165,9 @@ python toaster_collect_task_stats() {
>      import bb.utils
>      import os
>
> +    if None == e.data.getVar('BUILDSTATS_BASE', True):
> +        return  # if we don't have buildstats, we cannot collect stats
> +
>      def _append_read_list(v):
>          lock = bb.utils.lockfile(e.data.expand("${TOPDIR}/toaster.lock"),
> False, True)
>
> --
> 1.8.3.2
>
>


-- 
Alex Damian
Yocto Project
SSG / OTC
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openembedded.org/pipermail/openembedded-core/attachments/20140102/01a13d59/attachment-0002.html>


More information about the Openembedded-core mailing list