From: Aníbal Limón Date: Tue, 2 Feb 2016 18:07:19 +0000 (-0600) Subject: classes/testimage: Fix exportTests function. X-Git-Tag: 2016-4~1027 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=cecc7ec2bcb28d7d8a3277fb097efbbe13adff1c;p=openembedded-core.git classes/testimage: Fix exportTests function. 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 Signed-off-by: Ross Burton --- diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 53c6174ac5..eed27be4ce 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 not in ['d', 'target', 'host_dumper', 'suite']: savedata[key] = getattr(tc, key) savedata["target"]["ip"] = tc.target.ip or d.getVar("TEST_TARGET_IP", True) savedata["target"]["server_ip"] = tc.target.server_ip or d.getVar("TEST_SERVER_IP", True)