mirror of
https://git.yoctoproject.org/poky
synced 2026-07-16 15:57:04 +00:00
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>
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user