[oe-commits] [openembedded-core] 13/14: insane: consider INSANE_SKIP without package-specifier too

git at git.openembedded.org git at git.openembedded.org
Sat Jan 20 22:53:34 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch pyro
in repository openembedded-core.

commit 618093c6b7c919f25094f56b82610bee7c97f99f
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Wed Sep 13 11:25:09 2017 +0100

    insane: consider INSANE_SKIP without package-specifier too
    
    this is needed for the updated linux-firmware as it needs this INSANE_SKIP support
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    (cherry picked from commit 604939186cc08ab0429ebe00f3e32661847f0cf0)
    
    Adjusted for pyro context
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/classes/insane.bbclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 42cd15c..0c11c36 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -1154,7 +1154,8 @@ python do_package_qa () {
                     oe.utils.write_ld_so_conf(d)
             return warnchecks, errorchecks
 
-        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)))
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list