summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/busybox
diff options
context:
space:
mode:
authorBjörn Stenberg <bjst@enea.com>2013-06-24 16:52:21 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-25 17:44:58 +0100
commit67d95bffa95ca6e56c06c59fd1d15d20ce9a636a (patch)
tree83257f3f5b6de7560943468657b07a56845f4999 /meta/recipes-core/busybox
parenteea24c6545ea4af1b8cbacb923d7613bd29e7933 (diff)
downloadpoky-67d95bffa95ca6e56c06c59fd1d15d20ce9a636a.tar.gz
busybox: Add ptest
Install busybox test suite and run it as ptest. (From OE-Core rev: 0d29dc5b5f7742df60fdba90835ef77425963bde) Signed-off-by: Anders Roxell <anders.roxell@enea.com> 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/recipes-core/busybox')
-rw-r--r--meta/recipes-core/busybox/busybox.inc2
-rw-r--r--meta/recipes-core/busybox/busybox_1.20.2.bb7
-rw-r--r--meta/recipes-core/busybox/files/run-ptest7
3 files changed, 15 insertions, 1 deletions
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index 65e16424cc..8567d6471f 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -44,7 +44,7 @@ CONFFILES_${PN}-mdev = "${sysconfdir}/mdev.conf"
44 44
45RRECOMMENDS_${PN} = "${PN}-syslog ${PN}-udhcpc" 45RRECOMMENDS_${PN} = "${PN}-syslog ${PN}-udhcpc"
46 46
47inherit cml1 systemd update-rc.d 47inherit cml1 systemd update-rc.d ptest
48 48
49# internal helper 49# internal helper
50def busybox_cfg(feature, features, tokens, cnf, rem): 50def busybox_cfg(feature, features, tokens, cnf, rem):
diff --git a/meta/recipes-core/busybox/busybox_1.20.2.bb b/meta/recipes-core/busybox/busybox_1.20.2.bb
index a2e762d451..c854f0b2bd 100644
--- a/meta/recipes-core/busybox/busybox_1.20.2.bb
+++ b/meta/recipes-core/busybox/busybox_1.20.2.bb
@@ -34,6 +34,7 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
34 file://strict-atime.patch \ 34 file://strict-atime.patch \
35 file://fail_on_no_media.patch \ 35 file://fail_on_no_media.patch \
36 file://busybox-sulogin-empty-root-password.patch \ 36 file://busybox-sulogin-empty-root-password.patch \
37 file://run-ptest \
37 file://inetd.conf \ 38 file://inetd.conf \
38 file://inetd \ 39 file://inetd \
39 file://login-utilities.cfg \ 40 file://login-utilities.cfg \
@@ -43,3 +44,9 @@ SRC_URI[tarball.md5sum] = "e025414bc6cd79579cc7a32a45d3ae1c"
43SRC_URI[tarball.sha256sum] = "eb13ff01dae5618ead2ef6f92ba879e9e0390f9583bd545d8789d27cf39b6882" 44SRC_URI[tarball.sha256sum] = "eb13ff01dae5618ead2ef6f92ba879e9e0390f9583bd545d8789d27cf39b6882"
44 45
45EXTRA_OEMAKE += "V=1 ARCH=${TARGET_ARCH} CROSS_COMPILE=${TARGET_PREFIX} SKIP_STRIP=y" 46EXTRA_OEMAKE += "V=1 ARCH=${TARGET_ARCH} CROSS_COMPILE=${TARGET_PREFIX} SKIP_STRIP=y"
47
48do_install_ptest () {
49 cp -r ${B}/testsuite ${D}${PTEST_PATH}/
50 cp ${B}/.config ${D}${PTEST_PATH}/
51 ln -s /bin/busybox ${D}${PTEST_PATH}/busybox
52}
diff --git a/meta/recipes-core/busybox/files/run-ptest b/meta/recipes-core/busybox/files/run-ptest
new file mode 100644
index 0000000000..3608a8eb65
--- /dev/null
+++ b/meta/recipes-core/busybox/files/run-ptest
@@ -0,0 +1,7 @@
1#!/bin/sh
2
3current_dir=$(readlink -f $0)
4export bindir=$(dirname $current_dir)
5
6cd testsuite || exit 1
7./runtest -v | sed -r 's/^(SKIPPED|UNTESTED):/SKIP:/'