mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
insane: consider INSANE_SKIP without package-specifier too
(From OE-Core rev: 604939186cc08ab0429ebe00f3e32661847f0cf0) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e5e6a9ca18
commit
95698142e1
@@ -1097,7 +1097,8 @@ python do_package_qa () {
|
||||
return warnchecks, errorchecks
|
||||
|
||||
for package in packages:
|
||||
skip = (d.getVar('INSANE_SKIP_' + package) or "").split()
|
||||
skip = set((d.getVar('INSANE_SKIP') or "").split() +
|
||||
(d.getVar('INSANE_SKIP_' + package) or "").split())
|
||||
if skip:
|
||||
bb.note("Package %s skipping QA tests: %s" % (package, str(skip)))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user