]> code.ossystems Code Review - openembedded-core.git/commitdiff
diffutils: enable ptest support
authorChong Lu <Chong.Lu@windriver.com>
Fri, 7 Mar 2014 09:27:22 +0000 (09:27 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 11 Mar 2014 15:07:36 +0000 (08:07 -0700)
Install diffutils test suite and run it as ptest.

Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-extended/diffutils/diffutils-3.3/run-ptest [new file with mode: 0644]
meta/recipes-extended/diffutils/diffutils_3.3.bb

diff --git a/meta/recipes-extended/diffutils/diffutils-3.3/run-ptest b/meta/recipes-extended/diffutils/diffutils-3.3/run-ptest
new file mode 100644 (file)
index 0000000..695c5e8
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+make -C tests check-TESTS
index 7a95c1ab43a2fd1cb64945c8b408cb38eef2bdc0..a467f20aa4dbf022b92414e1251b4a824894b4df 100644 (file)
@@ -3,7 +3,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
 require diffutils.inc
 
-SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.xz"
+SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.xz \
+           file://run-ptest \
+"
 
 do_configure_prepend () {
        # Need to remove gettext macros with weird mix of versions
@@ -14,3 +16,19 @@ do_configure_prepend () {
 
 SRC_URI[md5sum] = "99180208ec2a82ce71f55b0d7389f1b3"
 SRC_URI[sha256sum] = "a25e89a8ab65fded1731e4186be1bb25cda967834b6df973599cdcd5abdfc19c"
+
+inherit ptest
+
+do_install_ptest() {
+       t=${D}${PTEST_PATH}
+       install -D ${S}/build-aux/test-driver $t/build-aux/test-driver
+       cp -r ${S}/tests $t/
+       install ${B}/tests/Makefile $t/tests/
+       sed -e 's|^Makefile:|_Makefile:|' \
+           -e 's|bash|sh|' \
+           -e 's|^top_srcdir = \(.*\)|top_srcdir = ..\/|' \
+           -e 's|^srcdir = \(.*\)|srcdir = .|' \
+           -e 's|"`$(built_programs)`"|diff|' \
+           -e 's|gawk|awk|g' \
+           -i $t/tests/Makefile
+}