From: "Björn Stenberg" <bjst@enea.com>
To: <openembedded-core@lists.openembedded.org>
Subject: [PATCH 1/4] ptest: Move ptest checks from recipes to ptest.bbclass
Date: Wed, 6 Mar 2013 10:41:08 +0100 [thread overview]
Message-ID: <1362562871-16878-2-git-send-email-bjst@enea.com> (raw)
In-Reply-To: <1362562871-16878-1-git-send-email-bjst@enea.com>
This patch cleans up ptest implementation in recipes by moving ptest
specific code parts into dedicated *_ptest functions.
Signed-off-by: Björn Stenberg <bjst@enea.com>
---
meta/classes/ptest.bbclass | 35 +++++++++++++++++++++++++++++------
1 files changed, 29 insertions(+), 6 deletions(-)
diff --git a/meta/classes/ptest.bbclass b/meta/classes/ptest.bbclass
index 131af7b..6ab5ee4 100644
--- a/meta/classes/ptest.bbclass
+++ b/meta/classes/ptest.bbclass
@@ -23,13 +23,36 @@ FILES_${PN}-dbg += "${PTEST_PATH}/.debug \
${PTEST_PATH}/*/*/*/*/.debug \
"
-ptest_do_install() {
- if [ "${PN}" = "${BPN}" -a ${PTEST_ENABLED} = "1" ]; then
- install -D ${WORKDIR}/run-ptest ${D}${PTEST_PATH}/run-ptest
- if grep -q install-ptest: Makefile; then
- oe_runmake DESTDIR=${D}${PTEST_PATH} install-ptest
+do_configure_ptest_base() {
+ if [ ${PTEST_ENABLED} = 1 ]; then
+ if [ type -t do_configure_ptest = function ]; then
+ do_configure_ptest
fi
fi
}
-EXPORT_FUNCTIONS ptest_do_install
+do_compile_ptest_base() {
+ if [ ${PTEST_ENABLED} = 1 ]; then
+ if [ type -t do_compile_ptest = function ]; then
+ do_compile_ptest
+ fi
+ fi
+}
+
+do_install_ptest_base() {
+ if [ ${PTEST_ENABLED} = 1 ]; then
+ if [ -f ${WORKDIR}/run-ptest ]; then
+ install -D ${WORKDIR}/run-ptest ${D}${PTEST_PATH}/run-ptest
+ if grep -q install-ptest: Makefile; then
+ oe_runmake DESTDIR=${D}${PTEST_PATH} install-ptest
+ fi
+ if [ type -t do_install_ptest = function ]; then
+ do_install_ptest
+ fi
+ fi
+ fi
+}
+
+addtask configure_ptest_base after do_configure before do_compile
+addtask compile_ptest_base after do_compile before do_install
+addtask install_ptest_base after do_install before do_package
--
1.7.5.4
next prev parent reply other threads:[~2013-03-06 9:58 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-06 9:41 [PATCH 0/4] Move ptest checks from recipes to ptest.bbclass Björn Stenberg
2013-03-06 9:41 ` Björn Stenberg [this message]
2013-03-06 9:41 ` [PATCH 2/4] dbus: Use new _ptest functions Björn Stenberg
2013-03-06 9:41 ` [PATCH 3/4] glib: " Björn Stenberg
2013-03-06 9:41 ` [PATCH 4/4] bash: " Björn Stenberg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1362562871-16878-2-git-send-email-bjst@enea.com \
--to=bjst@enea.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox