summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2017-09-13 11:25:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-20 22:52:58 +0000
commit2c3e0bb792ee0885bee01af3bcb950307df6c05f (patch)
tree80f599f820dc201b50eb6f42c21054c39e3e5fca
parentc6068707bd4c16e2a922081a3033155081a4abb7 (diff)
downloadpoky-2c3e0bb792ee0885bee01af3bcb950307df6c05f.tar.gz
insane: consider INSANE_SKIP without package-specifier too
this is needed for the updated linux-firmware as it needs this INSANE_SKIP support (From OE-Core rev: 618093c6b7c919f25094f56b82610bee7c97f99f) Signed-off-by: Ross Burton <ross.burton@intel.com> (cherry picked from commit 604939186cc08ab0429ebe00f3e32661847f0cf0) Adjusted for pyro context Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 42cd15c531..0c11c36583 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -1154,7 +1154,8 @@ python do_package_qa () {
1154 oe.utils.write_ld_so_conf(d) 1154 oe.utils.write_ld_so_conf(d)
1155 return warnchecks, errorchecks 1155 return warnchecks, errorchecks
1156 1156
1157 skip = (d.getVar('INSANE_SKIP_' + package) or "").split() 1157 skip = set((d.getVar('INSANE_SKIP') or "").split() +
1158 (d.getVar('INSANE_SKIP_' + package) or "").split())
1158 if skip: 1159 if skip:
1159 bb.note("Package %s skipping QA tests: %s" % (package, str(skip))) 1160 bb.note("Package %s skipping QA tests: %s" % (package, str(skip)))
1160 1161