]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/runexported.py: Remove host dumper
authorMariano Lopez <mariano.lopez@linux.intel.com>
Mon, 2 May 2016 13:19:16 +0000 (13:19 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 18 May 2016 22:23:43 +0000 (23:23 +0100)
The host dumper is used to get information about the host
running the test when a test fails. This is used for the
autobuilders of Yocto Project.

Now that exported tests have thier own class the host dumper
is not necessary anymore.

Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/runexported.py

index cc89e13c067b341022766486f2553328f7a49428..f333879c221266e4e433a99a04b521e928ce1cad 100755 (executable)
@@ -116,16 +116,11 @@ def main():
     for key in loaded["target"].keys():
         setattr(target, key, loaded["target"][key])
 
-    host_dumper = get_host_dumper(d)
-    host_dumper.parent_dir = loaded["host_dumper"]["parent_dir"]
-    host_dumper.cmds = loaded["host_dumper"]["cmds"]
-
     target.exportStart()
     tc = ExportTestContext(d)
 
     setattr(tc, "d", d)
     setattr(tc, "target", target)
-    setattr(tc, "host_dumper", host_dumper)
     for key in loaded.keys():
         if key != "d" and key != "target" and key != "host_dumper":
             setattr(tc, key, loaded[key])