diff options
| author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-04-01 17:57:35 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-03 15:51:36 +0100 |
| commit | 5c60c3621487248920d7229b9a19848752af4480 (patch) | |
| tree | e8fbefe9cba9ae3e9b797533af0fb4b2d4d8b5a5 | |
| parent | fc8b24d8e0cded78ad168b8a4ebc553a11b62f64 (diff) | |
| download | poky-5c60c3621487248920d7229b9a19848752af4480.tar.gz | |
bluez5: add ptest support
[YOCTO #5134]
(From OE-Core rev: 70d8cb61b03aa9214fe0e1990ab9500888d9f565)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 files changed, 71 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc index f38eaa5035..523252373a 100644 --- a/meta/recipes-connectivity/bluez5/bluez5.inc +++ b/meta/recipes-connectivity/bluez5/bluez5.inc | |||
| @@ -19,11 +19,13 @@ PACKAGECONFIG[experimental] = "--enable-experimental,--disable-experimental," | |||
| 19 | SRC_URI = "\ | 19 | SRC_URI = "\ |
| 20 | ${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \ | 20 | ${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \ |
| 21 | file://init \ | 21 | file://init \ |
| 22 | file://run-ptest \ | ||
| 22 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '', 'file://0001-Allow-using-obexd-without-systemd-in-the-user-sessio.patch', d)} \ | 23 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '', 'file://0001-Allow-using-obexd-without-systemd-in-the-user-sessio.patch', d)} \ |
| 24 | file://0001-tests-add-a-target-for-building-tests-without-runnin.patch \ | ||
| 23 | " | 25 | " |
| 24 | S = "${WORKDIR}/bluez-${PV}" | 26 | S = "${WORKDIR}/bluez-${PV}" |
| 25 | 27 | ||
| 26 | inherit autotools-brokensep pkgconfig systemd update-rc.d distro_features_check | 28 | inherit autotools-brokensep pkgconfig systemd update-rc.d distro_features_check ptest |
| 27 | 29 | ||
| 28 | EXTRA_OECONF = "\ | 30 | EXTRA_OECONF = "\ |
| 29 | --enable-tools \ | 31 | --enable-tools \ |
| @@ -101,3 +103,12 @@ INITSCRIPT_PACKAGES = "${PN}" | |||
| 101 | INITSCRIPT_NAME_${PN} = "bluetooth" | 103 | INITSCRIPT_NAME_${PN} = "bluetooth" |
| 102 | 104 | ||
| 103 | EXCLUDE_FROM_WORLD = "1" | 105 | EXCLUDE_FROM_WORLD = "1" |
| 106 | |||
| 107 | do_compile_ptest() { | ||
| 108 | oe_runmake buildtests | ||
| 109 | } | ||
| 110 | |||
| 111 | do_install_ptest() { | ||
| 112 | cp -r ${B}/unit/ ${D}${PTEST_PATH} | ||
| 113 | rm ${D}${PTEST_PATH}/unit/*.c ${D}${PTEST_PATH}/unit/*.o | ||
| 114 | } | ||
diff --git a/meta/recipes-connectivity/bluez5/bluez5/0001-tests-add-a-target-for-building-tests-without-runnin.patch b/meta/recipes-connectivity/bluez5/bluez5/0001-tests-add-a-target-for-building-tests-without-runnin.patch new file mode 100644 index 0000000000..24ddae6b63 --- /dev/null +++ b/meta/recipes-connectivity/bluez5/bluez5/0001-tests-add-a-target-for-building-tests-without-runnin.patch | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | From 4bdf0f96dcaa945fd29f26d56e5b36d8c23e4c8b Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
| 3 | Date: Fri, 1 Apr 2016 17:07:34 +0300 | ||
| 4 | Subject: [PATCH] tests: add a target for building tests without running them | ||
| 5 | |||
| 6 | Upstream-Status: Inappropriate [oe specific] | ||
| 7 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | ||
| 8 | --- | ||
| 9 | Makefile.am | 3 +++ | ||
| 10 | 1 file changed, 3 insertions(+) | ||
| 11 | |||
| 12 | diff --git a/Makefile.am b/Makefile.am | ||
| 13 | index 1a48a71..ba3b92f 100644 | ||
| 14 | --- a/Makefile.am | ||
| 15 | +++ b/Makefile.am | ||
| 16 | @@ -425,6 +425,9 @@ endif | ||
| 17 | TESTS = $(unit_tests) | ||
| 18 | AM_TESTS_ENVIRONMENT = MALLOC_CHECK_=3 MALLOC_PERTURB_=69 | ||
| 19 | |||
| 20 | +# This allows building tests without running them | ||
| 21 | +buildtests: $(TESTS) | ||
| 22 | + | ||
| 23 | if DBUS_RUN_SESSION | ||
| 24 | AM_TESTS_ENVIRONMENT += dbus-run-session -- | ||
| 25 | endif | ||
| 26 | -- | ||
| 27 | 2.8.0.rc3 | ||
| 28 | |||
diff --git a/meta/recipes-connectivity/bluez5/bluez5/run-ptest b/meta/recipes-connectivity/bluez5/bluez5/run-ptest new file mode 100644 index 0000000000..21df00c327 --- /dev/null +++ b/meta/recipes-connectivity/bluez5/bluez5/run-ptest | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | #! /bin/sh | ||
| 2 | |||
| 3 | cd unit | ||
| 4 | |||
| 5 | failed=0 | ||
| 6 | all=0 | ||
| 7 | |||
| 8 | for f in test-*; do | ||
| 9 | "./$f" | ||
| 10 | case "$?" in | ||
| 11 | 0) | ||
| 12 | echo "PASS: $f" | ||
| 13 | all=$((all + 1)) | ||
| 14 | ;; | ||
| 15 | 77) | ||
| 16 | echo "SKIP: $f" | ||
| 17 | ;; | ||
| 18 | *) | ||
| 19 | echo "FAIL: $f" | ||
| 20 | failed=$((failed + 1)) | ||
| 21 | all=$((all + 1)) | ||
| 22 | ;; | ||
| 23 | esac | ||
| 24 | done | ||
| 25 | |||
| 26 | if [ "$failed" -eq 0 ] ; then | ||
| 27 | echo "All $all tests passed" | ||
| 28 | else | ||
| 29 | echo "$failed of $all tests failed" | ||
| 30 | fi | ||
| 31 | |||
