Execution takes around 10 seconds. Signed-off-by: Gyorgy Sarvari <[email protected]> --- .../recipes-connectivity/gupnp/gupnp-igd/run-ptest | 13 +++++++++++++ .../recipes-connectivity/gupnp/gupnp-igd_1.2.0.bb | 11 ++++++++++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 meta-multimedia/recipes-connectivity/gupnp/gupnp-igd/run-ptest
diff --git a/meta-multimedia/recipes-connectivity/gupnp/gupnp-igd/run-ptest b/meta-multimedia/recipes-connectivity/gupnp/gupnp-igd/run-ptest new file mode 100644 index 0000000000..05aa2a9b3a --- /dev/null +++ b/meta-multimedia/recipes-connectivity/gupnp/gupnp-igd/run-ptest @@ -0,0 +1,13 @@ +#!/bin/sh +RET=0 + +cd test +for t in $(find . -type f -executable); do + if ./$t; then + echo PASS: $t + else + echo FAIL: $t + RET=1 + fi +done +exit $RET diff --git a/meta-multimedia/recipes-connectivity/gupnp/gupnp-igd_1.2.0.bb b/meta-multimedia/recipes-connectivity/gupnp/gupnp-igd_1.2.0.bb index 49cd8d8318..aa0a152f19 100644 --- a/meta-multimedia/recipes-connectivity/gupnp/gupnp-igd_1.2.0.bb +++ b/meta-multimedia/recipes-connectivity/gupnp/gupnp-igd_1.2.0.bb @@ -6,8 +6,17 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \ DEPENDS = "glib-2.0 gssdp gupnp sqlite3" SRC_URI = "http://download.gnome.org/sources/${BPN}/1.2/${BPN}-${PV}.tar.xz" +SRC_URI += "file://run-ptest" SRC_URI[sha256sum] = "4b5120098aa13edd27818ba9ee4d7fe961bf540bf50d056ff703c61545e02be1" GTKDOC_MESON_OPTION = "gtk_doc" -inherit meson pkgconfig gtk-doc gobject-introspection +inherit meson pkgconfig gtk-doc gobject-introspection ptest + +do_install_ptest(){ + cd ${B}/tests/gtest + for t in $(find . -type f -executable); do + install -D $t ${D}${PTEST_PATH}/test/$t + done + install -m 0644 ${S}/tests/gtest/*.xml ${D}${PTEST_PATH}/test/ +}
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#122366): https://lists.openembedded.org/g/openembedded-devel/message/122366 Mute This Topic: https://lists.openembedded.org/mt/116649243/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
