[oe-commits] [openembedded-core] 03/36: oeqa/runexported.py: Remove host dumper

git at git.openembedded.org git at git.openembedded.org
Wed May 18 22:24:59 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit fab3e4865a356ceb73d7deab5b4fd38ed795ca72
Author: Mariano Lopez <mariano.lopez at linux.intel.com>
AuthorDate: Mon May 2 13:19:16 2016 +0000

    oeqa/runexported.py: Remove host dumper
    
    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 at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/runexported.py | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/meta/lib/oeqa/runexported.py b/meta/lib/oeqa/runexported.py
index cc89e13..f333879 100755
--- a/meta/lib/oeqa/runexported.py
+++ b/meta/lib/oeqa/runexported.py
@@ -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])

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list