mirror of
https://git.yoctoproject.org/poky
synced 2026-04-17 18:32:12 +02:00
ruby: add ptest
(From OE-Core rev: 46f47b700ef7f58c8095db9bd3b4b867a6447360) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
99ec53a051
commit
dcfef9fef0
@@ -24,7 +24,7 @@ SRC_URI = "http://cache.ruby-lang.org/pub/ruby/${SHRT_VER}/ruby-${PV}.tar.gz \
|
||||
"
|
||||
UPSTREAM_CHECK_URI = "https://www.ruby-lang.org/en/downloads/"
|
||||
|
||||
inherit autotools
|
||||
inherit autotools ptest
|
||||
|
||||
|
||||
# This snippet lets compiled extensions which rely on external libraries,
|
||||
|
||||
13
meta/recipes-devtools/ruby/ruby/run-ptest
Normal file
13
meta/recipes-devtools/ruby/ruby/run-ptest
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
test_fullname=`find test -name test_*.rb`
|
||||
|
||||
for i in ${test_fullname}; do
|
||||
ruby ./test/runner.rb ${i} 2>&1 > /dev/null
|
||||
ret=$?
|
||||
if [ $ret != 0 ]; then
|
||||
echo "FAIL: ${i}"
|
||||
else
|
||||
echo "PASS: ${i}"
|
||||
fi
|
||||
done
|
||||
@@ -3,6 +3,7 @@ require ruby.inc
|
||||
SRC_URI += " \
|
||||
file://ruby-CVE-2017-9226.patch \
|
||||
file://ruby-CVE-2017-9228.patch \
|
||||
file://run-ptest \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "20c85b67846d49622ef3b24230803fef"
|
||||
@@ -55,6 +56,13 @@ do_install_append_class-target () {
|
||||
|
||||
}
|
||||
|
||||
do_install_ptest () {
|
||||
cp -rf ${S}/test ${D}${PTEST_PATH}/
|
||||
cp -r ${S}/include ${D}/${libdir}/ruby/
|
||||
test_case_rb=`grep rubygems/test_case.rb ${B}/.installed.list`
|
||||
sed -i -e 's:../../../test/:../../../ptest/test/:g' ${D}/$test_case_rb
|
||||
}
|
||||
|
||||
PACKAGES =+ "${PN}-ri-docs ${PN}-rdoc"
|
||||
|
||||
SUMMARY_${PN}-ri-docs = "ri (Ruby Interactive) documentation for the Ruby standard library"
|
||||
@@ -67,4 +75,6 @@ FILES_${PN}-rdoc += "${libdir}/ruby/*/rdoc ${bindir}/rdoc"
|
||||
|
||||
FILES_${PN} += "${datadir}/rubygems"
|
||||
|
||||
FILES_${PN}-ptest_append_class-target += "${libdir}/ruby/include"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
Reference in New Issue
Block a user