]> code.ossystems Code Review - openembedded-core.git/commit
oeqa/selftest/case: Use bb.utils.remove() instead of shutil.remove()
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 27 Nov 2018 12:03:50 +0000 (12:03 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 27 Nov 2018 22:11:22 +0000 (22:11 +0000)
commit00a8fd5b93a5c19ce0b7498e2bc653ce8ad58aaf
tree8a9c6af20b9a6bc50fa4b3a06d09c7c925ad5426
parent3dde0b749643575878bfbca2f8d2d9ec30bad166
oeqa/selftest/case: Use bb.utils.remove() instead of shutil.remove()

This avoids problems where shutil.remove will error with:

  File "/usr/lib/python3.5/shutil.py", line 436, in _rmtree_safe_fd
    os.unlink(name, dir_fd=topfd)
FileNotFoundError: [Errno 2] No such file or directory: 'S.gpg-agent.extra'

when there are races over file deletion (gpg agent may be slow to exit).

We already worked around speed and race issues in bb.utils.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/selftest/case.py