mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-31 01:10:08 +00:00
lua: Added ptest for lua
Signed-off-by: Andreas Sundstr Signed-off-by: Maxin B. John <maxin.john@enea.com> Signed-off-by: Paul Vaduva <Paul.Vaduva@enea.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
d3be014d9c
commit
142d6fb402
@@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd test
|
||||
lua -e"_U=true" all.lua > lua-test.tmp
|
||||
|
||||
echo "--- test output ---"
|
||||
cat lua-test.tmp
|
||||
echo ""
|
||||
echo ""
|
||||
echo "--- ptest result ---"
|
||||
|
||||
grep "final OK \!\!\!" lua-test.tmp > /dev/null
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "PASS: lua"
|
||||
else
|
||||
echo "FAIL: lua"
|
||||
fi
|
||||
|
||||
rm -f lua-test.tmp
|
||||
@@ -7,14 +7,20 @@ HOMEPAGE = "http://www.lua.org/"
|
||||
PR = "r0"
|
||||
|
||||
DEPENDS = "readline"
|
||||
SRC_URI = "http://www.lua.org/ftp/lua-${PV}.tar.gz \
|
||||
SRC_URI = "http://www.lua.org/ftp/lua-${PV}.tar.gz;name=tarballsrc \
|
||||
file://lua.pc \
|
||||
"
|
||||
"
|
||||
SRC_URI += "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', \
|
||||
'http://www.lua.org/tests/lua-${PV}-tests.tar.gz;name=tarballtest \
|
||||
file://run-ptest \
|
||||
', '', d)}"
|
||||
|
||||
SRC_URI[md5sum] = "33278c2ab5ee3c1a875be8d55c1ca2a1"
|
||||
SRC_URI[sha256sum] = "c740c7bb23a936944e1cc63b7c3c5351a8976d7867c5252c8854f7b2af9da68f"
|
||||
SRC_URI[tarballsrc.md5sum] = "33278c2ab5ee3c1a875be8d55c1ca2a1"
|
||||
SRC_URI[tarballsrc.sha256sum] = "c740c7bb23a936944e1cc63b7c3c5351a8976d7867c5252c8854f7b2af9da68f"
|
||||
SRC_URI[tarballtest.md5sum] = "a2b7ab1b8ff82a0145376e233ef30a4a"
|
||||
SRC_URI[tarballtest.sha256sum] = "56909863a3713dee3709b3dbd0c868237e4f5c9ea1744f5bf0ba8bafa6c4ed32"
|
||||
|
||||
inherit pkgconfig binconfig
|
||||
inherit pkgconfig binconfig ptest
|
||||
|
||||
UCLIBC_PATCHES += "file://uclibc-pthread.patch"
|
||||
SRC_URI_append_libc-uclibc = "${UCLIBC_PATCHES}"
|
||||
@@ -46,4 +52,8 @@ do_install () {
|
||||
rmdir ${D}${datadir}/lua
|
||||
}
|
||||
|
||||
do_install_ptest () {
|
||||
cp -a ${WORKDIR}/lua-${PV}-tests ${D}${PTEST_PATH}/test
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
Reference in New Issue
Block a user