aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-21 19:32:33 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-21 22:43:05 +0000
commit83867079182d8b9e981935da2b254947a89097bb (patch)
tree3e959ce8ef7d65c1fffc667da9177cada4d249fd
parent964e8b8cae4b28e21ade12b5effb494e459b1f0f (diff)
downloadopenembedded-core-contrib-83867079182d8b9e981935da2b254947a89097bb.tar.gz
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 <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/devtool.py2
1 files changed, 1 insertions, 1 deletions
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')