summaryrefslogtreecommitdiffstats
path: root/meta-app-framework
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2018-07-10 16:51:13 +0000
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2018-08-24 15:56:49 +0000
commita42e4e02ed7b9bfba115e936ea4cb5278a04879e (patch)
treef220c311b774ff7015c4330b1a3e284dd8167f11 /meta-app-framework
parent7356fbd2a413142b560158d7cf1e0cc699996ad4 (diff)
Add the afb-test binding in the devel AGL image
This will build afb-test binding and tests it using PTest. Bug-AGL: SPEC-1439 Change-Id: I75d1bbb0a780ca036ab0d653fdcbacda883122f9 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'meta-app-framework')
-rw-r--r--meta-app-framework/classes/aglwgt.bbclass10
1 files changed, 10 insertions, 0 deletions
diff --git a/meta-app-framework/classes/aglwgt.bbclass b/meta-app-framework/classes/aglwgt.bbclass
index aa27c2492..8a2c351e0 100644
--- a/meta-app-framework/classes/aglwgt.bbclass
+++ b/meta-app-framework/classes/aglwgt.bbclass
@@ -18,6 +18,8 @@ DEPENDS_append = " af-binder"
# for hal bindings genskel is required.
DEPENDS_append = " af-binder-devtools-native"
+EXTRA_OECMAKE_append_agl-ptest = " -DBUILD_TEST_WGT=TRUE"
+
do_aglwgt_package() {
cd ${B}
${S}/conf.d/autobuild/agl/autobuild package BUILD_DIR=${B} DEST=${B}/package VERBOSE=TRUE || \
@@ -41,6 +43,7 @@ POST_INSTALL_SCRIPT ?= "${POST_INSTALL_LEVEL}-${PN}.sh"
EXTRA_WGT_POSTINSTALL ?= ""
do_aglwgt_deploy() {
+ TEST_WGT="*-test.wgt"
if [ "${AGLWGT_AUTOINSTALL_${PN}}" = "0" ]
then
install -d ${D}/usr/AGL/apps/manualinstall
@@ -48,6 +51,12 @@ do_aglwgt_deploy() {
else
install -d ${D}/usr/AGL/apps/autoinstall
install -m 0644 ${B}/package/*.wgt ${D}/usr/AGL/apps/autoinstall
+
+ if [ "$(find ${D}/usr/AGL/apps/autoinstall -name ${TEST_WGT})" ]
+ then
+ install -d ${D}/usr/AGL/apps/testwgt
+ mv ${D}/usr/AGL/apps/autoinstall/*-test.wgt ${D}/usr/AGL/apps/testwgt
+ fi
fi
APP_FILES=""
@@ -68,6 +77,7 @@ EOF
FILES_${PN} += "/usr/AGL/apps/autoinstall/*.wgt \
/usr/AGL/apps/manualinstall/*.wgt \
+ /usr/AGL/apps/testwgt/*.wgt \
${sysconfdir}/agl-postinsts/${POST_INSTALL_SCRIPT} \
"