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

git at git.openembedded.org git at git.openembedded.org
Wed Sep 13 10:52:44 UTC 2017


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

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

commit 91a07bf774c5c7eb0aa698ac8b608ad01cb742ab
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
    
    Signed-off-by: Ross Burton <ross.burton at intel.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 ebcfacc..0a3b528 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)))
 

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


More information about the Openembedded-commits mailing list