mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 15:49:32 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
b3a656374b
commit
41fbf2c353
@@ -116,16 +116,11 @@ def main():
|
|||||||
for key in loaded["target"].keys():
|
for key in loaded["target"].keys():
|
||||||
setattr(target, key, loaded["target"][key])
|
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()
|
target.exportStart()
|
||||||
tc = ExportTestContext(d)
|
tc = ExportTestContext(d)
|
||||||
|
|
||||||
setattr(tc, "d", d)
|
setattr(tc, "d", d)
|
||||||
setattr(tc, "target", target)
|
setattr(tc, "target", target)
|
||||||
setattr(tc, "host_dumper", host_dumper)
|
|
||||||
for key in loaded.keys():
|
for key in loaded.keys():
|
||||||
if key != "d" and key != "target" and key != "host_dumper":
|
if key != "d" and key != "target" and key != "host_dumper":
|
||||||
setattr(tc, key, loaded[key])
|
setattr(tc, key, loaded[key])
|
||||||
|
|||||||
Reference in New Issue
Block a user