summaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2017-09-13 11:25:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-13 22:07:43 +0100
commit95698142e1893577a0561f7183582576b7c49be4 (patch)
treee5f64eb8beaa5e461e6055353f9f5c11fd7c024c /meta/classes/insane.bbclass
parente5e6a9ca1837eeaa276973fbf0f42f47230e715a (diff)
downloadopenembedded-core-contrib-95698142e1893577a0561f7183582576b7c49be4.tar.gz
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>
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r--meta/classes/insane.bbclass3
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)))