summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/flex/flex.inc
diff options
context:
space:
mode:
authorChong Lu <Chong.Lu@windriver.com>2014-02-14 17:47:27 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-14 12:30:20 +0000
commitb563b3bb789597320e6d4fc804f697d5f829da52 (patch)
treeb5c464f8f15f334e2b4f3edd0845cc7c09c9062a /meta/recipes-devtools/flex/flex.inc
parente089580dcf5dc5d09ecf6afa1eaa7ea043688937 (diff)
downloadpoky-b563b3bb789597320e6d4fc804f697d5f829da52.tar.gz
flex: enable ptest support
Install flex test suite and run it as ptest. (From OE-Core rev: 3ca11e4c5efcccfa06b4109e69ce7d42d02ce8e4) Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/flex/flex.inc')
-rw-r--r--meta/recipes-devtools/flex/flex.inc21
1 files changed, 19 insertions, 2 deletions
diff --git a/meta/recipes-devtools/flex/flex.inc b/meta/recipes-devtools/flex/flex.inc
index 96d5de5f74..75c10ef340 100644
--- a/meta/recipes-devtools/flex/flex.inc
+++ b/meta/recipes-devtools/flex/flex.inc
@@ -6,9 +6,12 @@ HOMEPAGE = "http://sourceforge.net/projects/flex/"
6SECTION = "devel" 6SECTION = "devel"
7LICENSE = "BSD" 7LICENSE = "BSD"
8 8
9SRC_URI = "${SOURCEFORGE_MIRROR}/flex/flex-${PV}.tar.bz2 " 9SRC_URI = "${SOURCEFORGE_MIRROR}/flex/flex-${PV}.tar.bz2 \
10 file://run-ptest \
11"
12
13inherit autotools gettext ptest
10 14
11inherit autotools gettext
12 15
13M4 = "${bindir}/m4" 16M4 = "${bindir}/m4"
14M4_class-native = "${STAGING_BINDIR_NATIVE}/m4" 17M4_class-native = "${STAGING_BINDIR_NATIVE}/m4"
@@ -25,3 +28,17 @@ do_install_append_class-nativesdk() {
25} 28}
26 29
27RDEPENDS_${PN} += "m4" 30RDEPENDS_${PN} += "m4"
31DEPENDS_${PN}-ptest += "bison-native flex-native"
32
33do_compile_ptest() {
34 for i in `find ${S}/tests/ -type d |grep -Ev "concatenated-options|reject|table-opts" | awk -F/ '{print $NF}'`; \
35 do oe_runmake -C ${S}/tests/$i -f ${B}/tests/$i/Makefile top_builddir=${B} FLEX=flex $i; \
36 done
37 oe_runmake -C ${S}/tests/test-reject -f ${B}/tests/test-reject/Makefile top_builddir=${B} FLEX=flex test-reject-nr test-reject-r test-reject-ser test-reject-ver
38}
39
40do_install_ptest() {
41 for i in `find ${S}/tests/ -type d | awk -F/ '{print $NF}'`; \
42 do cp -r ${S}/tests/$i ${D}${PTEST_PATH}; \
43 done
44}