diff options
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oeqa/selftest/case.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/case.py b/meta/lib/oeqa/selftest/case.py index 7a90a6b975..9c08d595ef 100644 --- a/meta/lib/oeqa/selftest/case.py +++ b/meta/lib/oeqa/selftest/case.py | |||
| @@ -12,6 +12,8 @@ import oeqa.utils.ftools as ftools | |||
| 12 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var | 12 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var |
| 13 | from oeqa.core.case import OETestCase | 13 | from oeqa.core.case import OETestCase |
| 14 | 14 | ||
| 15 | import bb.utils | ||
| 16 | |||
| 15 | class OESelftestTestCase(OETestCase): | 17 | class OESelftestTestCase(OETestCase): |
| 16 | def __init__(self, methodName="runTest"): | 18 | def __init__(self, methodName="runTest"): |
| 17 | self._extra_tear_down_commands = [] | 19 | self._extra_tear_down_commands = [] |
| @@ -167,7 +169,7 @@ to ensure accurate results.") | |||
| 167 | if self._track_for_cleanup: | 169 | if self._track_for_cleanup: |
| 168 | for path in self._track_for_cleanup: | 170 | for path in self._track_for_cleanup: |
| 169 | if os.path.isdir(path): | 171 | if os.path.isdir(path): |
| 170 | shutil.rmtree(path) | 172 | bb.utils.remove(path, recurse=True) |
| 171 | if os.path.isfile(path): | 173 | if os.path.isfile(path): |
| 172 | os.remove(path) | 174 | os.remove(path) |
| 173 | self._track_for_cleanup = [] | 175 | self._track_for_cleanup = [] |
