From 3ca11e4c5efcccfa06b4109e69ce7d42d02ce8e4 Mon Sep 17 00:00:00 2001 From: Chong Lu Date: Fri, 14 Feb 2014 17:47:27 +0800 Subject: flex: enable ptest support Install flex test suite and run it as ptest. Signed-off-by: Chong Lu Signed-off-by: Richard Purdie --- meta/recipes-devtools/flex/files/run-ptest | 29 +++++++++++++++++++++++++++++ meta/recipes-devtools/flex/flex.inc | 21 +++++++++++++++++++-- 2 files changed, 48 insertions(+), 2 deletions(-) create mode 100755 meta/recipes-devtools/flex/files/run-ptest (limited to 'meta/recipes-devtools/flex') diff --git a/meta/recipes-devtools/flex/files/run-ptest b/meta/recipes-devtools/flex/files/run-ptest new file mode 100755 index 0000000000..bffba16f70 --- /dev/null +++ b/meta/recipes-devtools/flex/files/run-ptest @@ -0,0 +1,29 @@ +#!/bin/sh + +test1="test-alloc-extra test-array-nr test-array-r test-basic-nr test-basic-r test-extended test-quotes \ +test-bison-nr test-bison-yylloc test-bison-yylval test-c++-basic test-c-cpp-nr test-prefix-nr test-ccl \ +test-c-cpp-r test-c++-multiple-scanners test-mem-r test-mem-nr test-debug-nr test-linedir-r test-noansi-r \ +test-yyextra test-header-r test-noansi-nr test-debug-r TEMPLATE test-top test-header-nr test-prefix-r" +test2="test-multiple-scanners-nr test-posixly-correct test-posix test-string-r test-string-nr" +test3="test-pthread test-include-by-push test-include-by-buffer test-include-by-reentrant" +test4="test-lineno-nr test-lineno-r test-lineno-trailing" +test5="test-c++-yywrap test-rescan-r test-rescan-nr" +test6="test-reject-nr test-reject-r" +test7="test-reject-ser test-reject-ver" +test8="test-multiple-scanners-r" + +output() { + if [ $? -eq 0 ]; \ + then echo "PASS: $i"; \ + else echo "FAIL: $i"; \ + fi; +} + +for i in $test1; do $i/$i < $i/test.input >/dev/null; output; done +for i in $test2; do $i/$i >/dev/null; output; done +for i in $test3; do cd $i; ./$i test-1.input >/dev/null; output; cd ..; done +for i in $test4; do test `$i/$i < $i/test.input` -eq `$i/$i 1 < $i/test.input` >/dev/null; output; done +for i in $test5; do $i/$i $i/test.input >/dev/null; output; done +for i in $test6; do test-reject/$i < test-reject/test.input >/dev/null; output; done +for i in $test7; do test-reject/$i test-reject/$i.tables < test-reject/test.input >/dev/null; output; done +cd $test8; ./$test8 >/dev/null; i=$test8 output 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/" SECTION = "devel" LICENSE = "BSD" -SRC_URI = "${SOURCEFORGE_MIRROR}/flex/flex-${PV}.tar.bz2 " +SRC_URI = "${SOURCEFORGE_MIRROR}/flex/flex-${PV}.tar.bz2 \ + file://run-ptest \ +" + +inherit autotools gettext ptest -inherit autotools gettext M4 = "${bindir}/m4" M4_class-native = "${STAGING_BINDIR_NATIVE}/m4" @@ -25,3 +28,17 @@ do_install_append_class-nativesdk() { } RDEPENDS_${PN} += "m4" +DEPENDS_${PN}-ptest += "bison-native flex-native" + +do_compile_ptest() { + for i in `find ${S}/tests/ -type d |grep -Ev "concatenated-options|reject|table-opts" | awk -F/ '{print $NF}'`; \ + do oe_runmake -C ${S}/tests/$i -f ${B}/tests/$i/Makefile top_builddir=${B} FLEX=flex $i; \ + done + 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 +} + +do_install_ptest() { + for i in `find ${S}/tests/ -type d | awk -F/ '{print $NF}'`; \ + do cp -r ${S}/tests/$i ${D}${PTEST_PATH}; \ + done +} -- cgit 1.2.3-korg