diff options
author | Ross Burton <ross.burton@intel.com> | 2017-09-13 11:25:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-13 21:59:57 +0100 |
commit | 604939186cc08ab0429ebe00f3e32661847f0cf0 (patch) | |
tree | a8ede4681ba997fc6c3861353bd5618a52e6ce61 /meta/classes | |
parent | 75e918d0d4b4cd7908ea5b3c30ca5ea5bf148b75 (diff) | |
download | openembedded-core-604939186cc08ab0429ebe00f3e32661847f0cf0.tar.gz openembedded-core-604939186cc08ab0429ebe00f3e32661847f0cf0.tar.bz2 openembedded-core-604939186cc08ab0429ebe00f3e32661847f0cf0.zip |
insane: consider INSANE_SKIP without package-specifier too
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/insane.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index ebcfacc492..0a3b528ddb 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -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))) |