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/ptest.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/ptest.bbclass')
| -rw-r--r-- | meta/classes/ptest.bbclass | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/classes/ptest.bbclass b/meta/classes/ptest.bbclass new file mode 100644 index 0000000000..8bde489e90 --- /dev/null +++ b/meta/classes/ptest.bbclass | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | # Ptest packages are built indirectly by a distro_feature, | ||
| 2 | # no need for them to be a direct target of 'world' | ||
| 3 | EXCLUDE_FROM_WORLD = "1" | ||
| 4 | |||
| 5 | SUMMARY_${PN}-ptest ?= "${SUMMARY} - Package test files" | ||
| 6 | DESCRIPTION_${PN}-ptest ?= "${DESCRIPTION} \ | ||
| 7 | This package contains a test directory ${PTEST_PATH} for package test purposes." | ||
| 8 | |||
| 9 | PTEST_PATH ?= "${libdir}/${PN}/ptest" | ||
| 10 | FILES_${PN}-ptest = "${PTEST_PATH}/*" | ||
| 11 | SECTION_${PN}-ptest = "devel" | ||
| 12 | ALLOW_EMPTY_${PN}-ptest = "1" | ||
| 13 | PTEST_ENABLED = "${@base_contains("DISTRO_FEATURES", "ptest", "1", "0", d)}" | ||
| 14 | RDEPENDS_${PN}-ptest_virtclass-native = "" | ||
| 15 | RDEPENDS_${PN}-ptest_virtclass-nativesdk = "" | ||
| 16 | |||
| 17 | PACKAGES += "${PN}-ptest" | ||
| 18 | |||
| 19 | FILES_${PN}-dbg += "${PTEST_PATH}/*/.debug \ | ||
| 20 | ${PTEST_PATH}/*/*/.debug \ | ||
| 21 | ${PTEST_PATH}/*/*/*/.debug \ | ||
| 22 | ${PTEST_PATH}/*/*/*/*/.debug \ | ||
| 23 | " | ||
| 24 | |||
| 25 | ptest_do_install() { | ||
| 26 | if [ "${PN}" = "${BPN}" -a ${PTEST_ENABLED} = "1" ]; then | ||
| 27 | install -D ${WORKDIR}/run-ptest ${D}${PTEST_PATH}/run-ptest | ||
| 28 | if grep -q install-ptest: Makefile; then | ||
| 29 | oe_runmake DESTDIR=${D}${PTEST_PATH} install-ptest | ||
| 30 | fi | ||
| 31 | fi | ||
| 32 | } | ||
| 33 | |||
| 34 | EXPORT_FUNCTIONS ptest_do_install | ||
