summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorChong Lu <Chong.Lu@windriver.com>2014-01-22 12:55:34 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-01-28 00:52:33 +0000
commite1780a29d0c88019692ca0094cf76fd6c7c70c8e (patch)
tree4fbd6e30f36abab9a12df0928feadae4886ca846 /meta/recipes-extended
parent1f45bc347169812c8a0c79132e491293268ad8d8 (diff)
downloadpoky-e1780a29d0c88019692ca0094cf76fd6c7c70c8e.tar.gz
gawk: enable ptest support
Install gawk test suite and run it as ptest. (From OE-Core rev: 06b6b29a526541acde8916d6ba504655f4401f37) 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>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/gawk/gawk-4.0.2/run-ptest10
-rw-r--r--meta/recipes-extended/gawk/gawk_4.0.2.bb13
2 files changed, 22 insertions, 1 deletions
diff --git a/meta/recipes-extended/gawk/gawk-4.0.2/run-ptest b/meta/recipes-extended/gawk/gawk-4.0.2/run-ptest
new file mode 100644
index 0000000000..7d214eafbe
--- /dev/null
+++ b/meta/recipes-extended/gawk/gawk-4.0.2/run-ptest
@@ -0,0 +1,10 @@
1#!/bin/sh
2
3cd test
4for i in `grep -vE "@|^$|#|Gt-dummy" Maketests |awk -F: '{print $1}'`; \
5 do LC_ALL=${GAWKLOCALE:-C} LANG=${GAWKLOCALE:-C} srcdir=`pwd` AWK=gawk CMP=cmp \
6 make -f Maketests $i &>$i.tmp; \
7 grep -q "Error" $i.tmp; \
8 if [ $? == 0 ]; then echo "FAIL: $i"; \
9 else echo "PASS: $i"; rm -f $i.tmp; fi; \
10done
diff --git a/meta/recipes-extended/gawk/gawk_4.0.2.bb b/meta/recipes-extended/gawk/gawk_4.0.2.bb
index 424b6b0077..eb86af39da 100644
--- a/meta/recipes-extended/gawk/gawk_4.0.2.bb
+++ b/meta/recipes-extended/gawk/gawk_4.0.2.bb
@@ -16,7 +16,9 @@ DEPENDS += "readline"
16RDEPENDS_gawk += "gawk-common" 16RDEPENDS_gawk += "gawk-common"
17RDEPENDS_pgawk += "gawk-common" 17RDEPENDS_pgawk += "gawk-common"
18 18
19SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz" 19SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \
20 file://run-ptest \
21"
20 22
21SRC_URI[md5sum] = "4d505dc2c9f1eb3e9f8d6cac87d4bd1a" 23SRC_URI[md5sum] = "4d505dc2c9f1eb3e9f8d6cac87d4bd1a"
22SRC_URI[sha256sum] = "6e0de117c3713aa8d7fa347fc9fd645b10038ae49d8cf947d8c1d51cbb76141a" 24SRC_URI[sha256sum] = "6e0de117c3713aa8d7fa347fc9fd645b10038ae49d8cf947d8c1d51cbb76141a"
@@ -39,3 +41,12 @@ do_install_append() {
39 # remove the link since we don't package it 41 # remove the link since we don't package it
40 rm ${D}${bindir}/awk 42 rm ${D}${bindir}/awk
41} 43}
44
45inherit ptest
46
47do_install_ptest() {
48 mkdir ${D}${PTEST_PATH}/test
49 for i in `grep -vE "@|^$|#|Gt-dummy" ${S}/test/Maketests |awk -F: '{print $1}'` Maketests; \
50 do cp ${S}/test/$i* ${D}${PTEST_PATH}/test; \
51 done
52}