mirror of
https://git.yoctoproject.org/poky
synced 2026-07-16 15:57:04 +00:00
testimage/oeqa: Drop testimage_dump_host functionality
The intent behind these functions was to dump the system state when issues occured but it has never really worked as we'd planned. Regular monitoring as the build runs has largely replaced this as that allows a trend to be seen rather than a spot value which was never really useful. The code is bitrotting and not functioning correctly so drop it. [YOCTO #13872] RP: Reword commit message (From OE-Core rev: 8d1bc34cffdd9f054e51db4e880747c79bf834fe) Signed-off-by: Thomas Roos <throos@amazon.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit dea37ba49a236029da73d5cfbfc069bffc38b508) Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
committed by
Steve Sakoman
parent
4c02657a44
commit
4f1eb64d15
@@ -61,16 +61,12 @@ def testexport_main(d):
|
||||
d.getVar("TEST_TARGET"), None, d.getVar("TEST_TARGET_IP"),
|
||||
d.getVar("TEST_SERVER_IP"))
|
||||
|
||||
host_dumper = OERuntimeTestContextExecutor.getHostDumper(
|
||||
d.getVar("testimage_dump_host"), d.getVar("TESTIMAGE_DUMP_DIR"))
|
||||
|
||||
image_manifest = "%s.manifest" % image_name
|
||||
image_packages = OERuntimeTestContextExecutor.readPackagesManifest(image_manifest)
|
||||
|
||||
extract_dir = d.getVar("TEST_EXTRACTED_DIR")
|
||||
|
||||
tc = OERuntimeTestContext(td, logger, target, host_dumper,
|
||||
image_packages, extract_dir)
|
||||
tc = OERuntimeTestContext(td, logger, target, image_packages, extract_dir)
|
||||
|
||||
copy_needed_files(d, tc)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user