summaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
authorBjörn Stenberg <bjst@enea.com>2012-12-19 17:18:27 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-26 11:34:04 +0000
commit1d2c6833ae802553d6df3dbb249336c44cef5df5 (patch)
treebdcbf8c98fae2723949c625c195d59f21251e124 /meta/classes/image.bbclass
parent627e745d7bcda8821392f30c60da3cf2858d9e7f (diff)
downloadpoky-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/image.bbclass')
-rw-r--r--meta/classes/image.bbclass6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 8bf718a64b..d3a416d371 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -26,13 +26,13 @@ ROOTFS_BOOTSTRAP_INSTALL = "${@base_contains("IMAGE_FEATURES", "package-manageme
26FEATURE_INSTALL = "${@' '.join(oe.packagegroup.required_packages(oe.data.typed_value('IMAGE_FEATURES', d), d))}" 26FEATURE_INSTALL = "${@' '.join(oe.packagegroup.required_packages(oe.data.typed_value('IMAGE_FEATURES', d), d))}"
27FEATURE_INSTALL_OPTIONAL = "${@' '.join(oe.packagegroup.optional_packages(oe.data.typed_value('IMAGE_FEATURES', d), d))}" 27FEATURE_INSTALL_OPTIONAL = "${@' '.join(oe.packagegroup.optional_packages(oe.data.typed_value('IMAGE_FEATURES', d), d))}"
28 28
29# packages to install from features, excluding dev/dbg/doc 29# packages to install from features, excluding dev/dbg/doc/ptest
30NORMAL_FEATURE_INSTALL = "${@' '.join(oe.packagegroup.required_packages(normal_groups(d), d))}" 30NORMAL_FEATURE_INSTALL = "${@' '.join(oe.packagegroup.required_packages(normal_groups(d), d))}"
31NORMAL_FEATURE_INSTALL_OPTIONAL = "${@' '.join(oe.packagegroup.optional_packages(normal_groups(d), d))}" 31NORMAL_FEATURE_INSTALL_OPTIONAL = "${@' '.join(oe.packagegroup.optional_packages(normal_groups(d), d))}"
32 32
33def normal_groups(d): 33def normal_groups(d):
34 """Return all the IMAGE_FEATURES, with the exception of our special package groups""" 34 """Return all the IMAGE_FEATURES, with the exception of our special package groups"""
35 extras = set(['dev-pkgs', 'staticdev-pkgs', 'doc-pkgs', 'dbg-pkgs']) 35 extras = set(['dev-pkgs', 'staticdev-pkgs', 'doc-pkgs', 'dbg-pkgs', 'ptest-pkgs'])
36 features = set(oe.data.typed_value('IMAGE_FEATURES', d)) 36 features = set(oe.data.typed_value('IMAGE_FEATURES', d))
37 return features.difference(extras) 37 return features.difference(extras)
38 38
@@ -54,6 +54,8 @@ def complementary_globs(featurevar, d):
54 globs.append('*-doc') 54 globs.append('*-doc')
55 elif feature == 'dbg-pkgs': 55 elif feature == 'dbg-pkgs':
56 globs.append('*-dbg') 56 globs.append('*-dbg')
57 elif feature == 'ptest-pkgs':
58 globs.append('*-ptest')
57 return ' '.join(globs) 59 return ' '.join(globs)
58 60
59IMAGE_INSTALL_COMPLEMENTARY = '${@complementary_globs("IMAGE_FEATURES", d)}' 61IMAGE_INSTALL_COMPLEMENTARY = '${@complementary_globs("IMAGE_FEATURES", d)}'