From: Richard Purdie Date: Tue, 21 Mar 2017 19:32:33 +0000 (+0000) Subject: oeqa/selftest/devtool: Enable missing cleanup X-Git-Tag: uninative-1.6~59 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=83867079182d8b9e981935da2b254947a89097bb;p=openembedded-core.git oeqa/selftest/devtool: Enable missing cleanup Not sure why this cleanup is disabled but it clearly should be running so enable it. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py index c389d50602..a160c8328c 100644 --- a/meta/lib/oeqa/selftest/devtool.py +++ b/meta/lib/oeqa/selftest/devtool.py @@ -507,7 +507,7 @@ class DevtoolTests(DevtoolBase): builddir_m4 = tempfile.mkdtemp(prefix='devtoolqa') self.track_for_cleanup(tempdir_mdadm) self.track_for_cleanup(tempdir_m4) - #self.track_for_cleanup(builddir_m4) + self.track_for_cleanup(builddir_m4) self.track_for_cleanup(self.workspacedir) self.add_command_to_tearDown('bitbake-layers remove-layer */workspace') self.add_command_to_tearDown('bitbake -c clean mdadm m4')