From a2b0d0423555e9b386f1a7bb620837c23be3854e Mon Sep 17 00:00:00 2001 From: Mariano Lopez Date: Tue, 1 Sep 2015 07:36:30 +0000 Subject: runexported: Make it compatible with host dump Currently it is not possible to run a exported test, but this patch will allow to use the HosDumper class when running a exported test, otherwise the HostDumper class will break runexpored test. [YOCTO #8118] (From OE-Core rev: 25814dbdd12db0499e4d81876873158e1b8a4fcc) Signed-off-by: Mariano Lopez Signed-off-by: Richard Purdie --- meta/classes/testimage.bbclass | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'meta/classes/testimage.bbclass') diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 82cb0110e3..8fa00f5fbf 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass @@ -173,9 +173,10 @@ def exportTests(d,tc): savedata = {} savedata["d"] = {} savedata["target"] = {} + savedata["host_dumper"] = {} for key in tc.__dict__: # special cases - if key != "d" and key != "target": + if key != "d" and key != "target" and key != "host_dumper": 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) @@ -189,6 +190,9 @@ def exportTests(d,tc): # we don't care about those anyway pass + savedata["host_dumper"]["parent_dir"] = tc.host_dumper.parent_dir + savedata["host_dumper"]["cmds"] = tc.host_dumper.cmds + with open(os.path.join(exportpath, "testdata.json"), "w") as f: json.dump(savedata, f, skipkeys=True, indent=4, sort_keys=True) -- cgit v1.2.3-54-g00ecf