mirror of
https://git.yoctoproject.org/poky
synced 2026-04-22 06:32:12 +02:00
insane: Fix case where S doesn't exist
If S doesn't exist, do_qa_patch would fail. Fix the code to not fail in this situation. (From OE-Core rev: 4041d91b63ff2315657499e22c74ec90adbf9e19) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1399,7 +1399,7 @@ python do_qa_patch() {
|
||||
oe.qa.handle_error("unimplemented-ptest", "%s: autotools-based tests detected" % d.getVar('PN'), d)
|
||||
|
||||
# Last resort, detect a test directory in sources
|
||||
elif any(filename.lower() in ["test", "tests"] for filename in os.listdir(srcdir)):
|
||||
elif os.path.exists(srcdir) and any(filename.lower() in ["test", "tests"] for filename in os.listdir(srcdir)):
|
||||
oe.qa.handle_error("unimplemented-ptest", "%s: test subdirectory detected" % d.getVar('PN'), d)
|
||||
|
||||
oe.qa.exit_if_errors(d)
|
||||
|
||||
Reference in New Issue
Block a user