diff options
author | Björn Stenberg <bjst@enea.com> | 2012-12-19 17:18:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-26 11:34:04 +0000 |
commit | 1d2c6833ae802553d6df3dbb249336c44cef5df5 (patch) | |
tree | bdcbf8c98fae2723949c625c195d59f21251e124 /meta/classes/packagegroup.bbclass | |
parent | 627e745d7bcda8821392f30c60da3cf2858d9e7f (diff) | |
download | poky-1d2c6833ae802553d6df3dbb249336c44cef5df5.tar.gz |
Add a new distro feature "ptest".
This patch creates a new distro feature "ptest", which creates -ptest
packages containing the test suite of the package for running on the
target. Test files are installed in /usr/lib/<pkg>/ptest.
The patch also includes a change to automake, splitting the "make check"
target into separate steps for building and running the tests.
(From OE-Core rev: 6f92e7f8891008dd3c89325d3fbe2da853372326)
Signed-off-by: Björn Stenberg <bjst@enea.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/packagegroup.bbclass')
-rw-r--r-- | meta/classes/packagegroup.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/packagegroup.bbclass b/meta/classes/packagegroup.bbclass index fc67302a2c..af6ee5dff1 100644 --- a/meta/classes/packagegroup.bbclass +++ b/meta/classes/packagegroup.bbclass | |||
@@ -25,7 +25,7 @@ python () { | |||
25 | packages = d.getVar('PACKAGES', True).split() | 25 | packages = d.getVar('PACKAGES', True).split() |
26 | genpackages = [] | 26 | genpackages = [] |
27 | for pkg in packages: | 27 | for pkg in packages: |
28 | for postfix in ['-dbg', '-dev']: | 28 | for postfix in ['-dbg', '-dev', '-ptest']: |
29 | genpackages.append(pkg+postfix) | 29 | genpackages.append(pkg+postfix) |
30 | d.setVar('PACKAGES', ' '.join(packages+genpackages)) | 30 | d.setVar('PACKAGES', ' '.join(packages+genpackages)) |
31 | } | 31 | } |