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 22:07:43 +0100 |
commit | 95698142e1893577a0561f7183582576b7c49be4 (patch) | |
tree | e5f64eb8beaa5e461e6055353f9f5c11fd7c024c /meta/classes | |
parent | e5e6a9ca1837eeaa276973fbf0f42f47230e715a (diff) | |
download | poky-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')
-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 () { | |||
1097 | return warnchecks, errorchecks | 1097 | return warnchecks, errorchecks |
1098 | 1098 | ||
1099 | for package in packages: | 1099 | for package in packages: |
1100 | skip = (d.getVar('INSANE_SKIP_' + package) or "").split() | 1100 | skip = set((d.getVar('INSANE_SKIP') or "").split() + |
1101 | (d.getVar('INSANE_SKIP_' + package) or "").split()) | ||
1101 | if skip: | 1102 | if skip: |
1102 | bb.note("Package %s skipping QA tests: %s" % (package, str(skip))) | 1103 | bb.note("Package %s skipping QA tests: %s" % (package, str(skip))) |
1103 | 1104 | ||