diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-07-02 17:40:37 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-04 14:54:10 +0100 |
commit | 20d4205a4e408b6a99db392d4df458156113106a (patch) | |
tree | d1ca8936931c165c6fb5672d06fffb9a891a56a5 | |
parent | d50c44585e72057532b8e0d9221ebf058e514672 (diff) | |
download | openembedded-core-20d4205a4e408b6a99db392d4df458156113106a.tar.gz openembedded-core-20d4205a4e408b6a99db392d4df458156113106a.tar.bz2 openembedded-core-20d4205a4e408b6a99db392d4df458156113106a.zip |
package.bbclass: enable the use of package_qa_handle_error
This will allow the reporting of these errors as either WARNINGs (default)
or ERRORs if installed_vs_shipped is added to the ERROR_QA of the policy
file (such as a <distro_name>.conf file.
V2: found the code I had intended to send instead of that other junk,
was just not watching what I pushed on that one, sorry. (this is edit in
no in the actual commit message)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r-- | meta/classes/package.bbclass | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index d94d32f72a..e6856cdf87 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -988,9 +988,13 @@ python populate_packages () { unshipped.append(path) if unshipped != []: - bb.warn("For recipe %s, the following files/directories were installed but not shipped in any package:" % pn) - for f in unshipped: - bb.warn(" " + f) + msg = pn + ": Files/directories were installed but not shipped" + if "installed_vs_shipped" in (d.getVar('INSANE_SKIP_' + pn, True) or "").split(): + bb.note("Package %s skipping QA tests: installed_vs_shipped" % pn) + else: + for f in unshipped: + msg = msg + "\n " + f + package_qa_handle_error("installed_vs_shipped", msg, d) bb.build.exec_func("package_name_hook", d) |