summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/nettle/nettle.inc
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2015-08-27 10:40:22 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-01 11:44:00 +0100
commit3a37c439c7abdc5b0d269b80192f1b8d327f8e11 (patch)
tree8db5414d11b77e17aa9b1b5830623bac9100120f /meta/recipes-support/nettle/nettle.inc
parent38f4e92ab96fe472b3efc2d359a25a6916019c49 (diff)
downloadpoky-3a37c439c7abdc5b0d269b80192f1b8d327f8e11.tar.gz
nettle: Add ptests
Use the nettle testsuite as ptests. Skip "sha1-huge-test" because it can take 20 minutes to finish. (From OE-Core rev: 75839c401f319d4367cb1b9259d0931170212ec8) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/nettle/nettle.inc')
-rw-r--r--meta/recipes-support/nettle/nettle.inc21
1 files changed, 19 insertions, 2 deletions
diff --git a/meta/recipes-support/nettle/nettle.inc b/meta/recipes-support/nettle/nettle.inc
index 0579b6c923..fafff6d8d9 100644
--- a/meta/recipes-support/nettle/nettle.inc
+++ b/meta/recipes-support/nettle/nettle.inc
@@ -8,19 +8,36 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
8 8
9DEPENDS += "gmp" 9DEPENDS += "gmp"
10 10
11SRC_URI = "http://www.lysator.liu.se/~nisse/archive/${BP}.tar.gz" 11SRC_URI = "http://www.lysator.liu.se/~nisse/archive/${BP}.tar.gz \
12 file://Add-target-to-only-build-tests-not-run-them.patch \
13 file://run-ptest \
14 "
12 15
13SRC_URI[md5sum] = "003d5147911317931dd453520eb234a5" 16SRC_URI[md5sum] = "003d5147911317931dd453520eb234a5"
14SRC_URI[sha256sum] = "bc71ebd43435537d767799e414fce88e521b7278d48c860651216e1fc6555b40" 17SRC_URI[sha256sum] = "bc71ebd43435537d767799e414fce88e521b7278d48c860651216e1fc6555b40"
15 18
16EXTRA_OECONF = "--disable-openssl" 19EXTRA_OECONF = "--disable-openssl"
17 20
21inherit autotools ptest
22
18do_configure_prepend() { 23do_configure_prepend() {
19 if [ ! -e ${S}/acinclude.m4 -a -e ${S}/aclocal.m4 ]; then 24 if [ ! -e ${S}/acinclude.m4 -a -e ${S}/aclocal.m4 ]; then
20 cp ${S}/aclocal.m4 ${S}/acinclude.m4 25 cp ${S}/aclocal.m4 ${S}/acinclude.m4
21 fi 26 fi
22} 27}
23 28
24inherit autotools 29do_compile_ptest() {
30 oe_runmake buildtest
31}
32
33do_install_ptest() {
34 install -d ${D}${PTEST_PATH}/testsuite/
35 install ${S}/testsuite/gold-bug.txt ${D}${PTEST_PATH}/testsuite/
36 install ${S}/testsuite/*-test ${D}${PTEST_PATH}/testsuite/
37 # tools can be found in PATH, not in ../tools/
38 sed -i -e 's|../tools/||' ${D}${PTEST_PATH}/testsuite/*-test
39 install ${B}/testsuite/*-test ${D}${PTEST_PATH}/testsuite/
40}
41
25 42
26BBCLASSEXTEND = "native nativesdk" 43BBCLASSEXTEND = "native nativesdk"