[OE-core] [PATCH 21/21] classes/testimage: Fix exportTests function.

Paul Eggleton paul.eggleton at linux.intel.com
Tue Feb 2 22:30:09 UTC 2016


On Tue, 02 Feb 2016 12:09:37 Aníbal Limón wrote:
> With new structure of TestContext now holds suite and variable
> that contains unittest instances,  it can't be exported using
> JSON causing and exception.
> 
> Adds the suite variable for avoid export it.
> 
> Signed-off-by: Aníbal Limón <anibal.limon at linux.intel.com>
> ---
>  meta/classes/testimage.bbclass | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
> index 5fafda1..57858e6 100644
> --- a/meta/classes/testimage.bbclass
> +++ b/meta/classes/testimage.bbclass
> @@ -112,7 +112,7 @@ def exportTests(d,tc):
>      savedata["host_dumper"] = {}
>      for key in tc.__dict__:
>          # special cases
> -        if key != "d" and key != "target" and key != "host_dumper":
> +        if key != "d" and key != "target" and key != "host_dumper" and key
> != "suite": savedata[key] = getattr(tc, key)

Given how long this is getting we might want to change to:

  if key not in ['d', 'target', 'host_dumper', 'suite']:

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



More information about the Openembedded-core mailing list