summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runexported.py
diff options
context:
space:
mode:
authorMariano Lopez <mariano.lopez@linux.intel.com>2016-05-02 13:19:16 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-19 09:05:18 +0100
commit41fbf2c35315846384779cbfe1acb64e177e9ab2 (patch)
treedba82abb34c7c63b67730607594b487e3204ba09 /meta/lib/oeqa/runexported.py
parentb3a656374b2fce0a1ac236fab80998ac5d3a1726 (diff)
downloadpoky-41fbf2c35315846384779cbfe1acb64e177e9ab2.tar.gz
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. (From OE-Core rev: fab3e4865a356ceb73d7deab5b4fd38ed795ca72) Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runexported.py')
-rwxr-xr-xmeta/lib/oeqa/runexported.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/lib/oeqa/runexported.py b/meta/lib/oeqa/runexported.py
index cc89e13c06..f333879c22 100755
--- a/meta/lib/oeqa/runexported.py
+++ b/meta/lib/oeqa/runexported.py
@@ -116,16 +116,11 @@ def main():
116 for key in loaded["target"].keys(): 116 for key in loaded["target"].keys():
117 setattr(target, key, loaded["target"][key]) 117 setattr(target, key, loaded["target"][key])
118 118
119 host_dumper = get_host_dumper(d)
120 host_dumper.parent_dir = loaded["host_dumper"]["parent_dir"]
121 host_dumper.cmds = loaded["host_dumper"]["cmds"]
122
123 target.exportStart() 119 target.exportStart()
124 tc = ExportTestContext(d) 120 tc = ExportTestContext(d)
125 121
126 setattr(tc, "d", d) 122 setattr(tc, "d", d)
127 setattr(tc, "target", target) 123 setattr(tc, "target", target)
128 setattr(tc, "host_dumper", host_dumper)
129 for key in loaded.keys(): 124 for key in loaded.keys():
130 if key != "d" and key != "target" and key != "host_dumper": 125 if key != "d" and key != "target" and key != "host_dumper":
131 setattr(tc, key, loaded[key]) 126 setattr(tc, key, loaded[key])