]> code.ossystems Code Review - openembedded-core.git/commit
oe-selftest: fix behaviour if oe-selftest.log is a dangling symlink
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Thu, 22 Dec 2016 03:13:57 +0000 (16:13 +1300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 9 Jan 2017 13:34:29 +0000 (13:34 +0000)
commit263af91a0efd21e041ecdb0c40f9b2d4e735f67d
tree1d4cbea1036471fc12b1ab33fa2f7e970bf68d13
parent0a8abc7681edec5f128ceb757559c5a50f139a9c
oe-selftest: fix behaviour if oe-selftest.log is a dangling symlink

If you delete the log file that the oe-selftest.log symlink points to
but not the symlink itself, because we were using os.path.exists() here
the code assumed that the symlink didn't exist when in fact it still
did. Use os.path.lexists() instead.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
scripts/oe-selftest