mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
jemalloc: add ptest support
Add ptest support. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
saved_dir=$PWD
|
||||||
|
for dir in tests/* ; do
|
||||||
|
cd $dir
|
||||||
|
for atest in * ; do
|
||||||
|
if [ \( -x $atest \) -a \( -f $atest \) ] ; then
|
||||||
|
./$atest > ${atest}.stdout 2> ${atest}.stderr
|
||||||
|
if [ $? = 0 ] ; then
|
||||||
|
echo "PASS: $dir $atest"
|
||||||
|
rm ${atest}.stdout ${atest}.stderr
|
||||||
|
else
|
||||||
|
echo "FAIL: ${dir}/${atest}"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
cd $saved_dir
|
||||||
|
done
|
||||||
|
|
||||||
@@ -15,14 +15,29 @@ LIC_FILES_CHKSUM = "file://README;md5=6900e4a158982e4c4715bf16aa54fa10"
|
|||||||
|
|
||||||
SRC_URI = "git://github.com/jemalloc/jemalloc.git \
|
SRC_URI = "git://github.com/jemalloc/jemalloc.git \
|
||||||
file://0001-Makefile.in-make-sure-doc-generated-before-install.patch \
|
file://0001-Makefile.in-make-sure-doc-generated-before-install.patch \
|
||||||
|
file://run-ptest \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRCREV = "ea6b3e973b477b8061e0076bb257dbd7f3faa756"
|
SRCREV = "ea6b3e973b477b8061e0076bb257dbd7f3faa756"
|
||||||
|
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
inherit autotools
|
inherit autotools ptest
|
||||||
|
|
||||||
EXTRA_AUTORECONF += "--exclude=autoheader"
|
EXTRA_AUTORECONF += "--exclude=autoheader"
|
||||||
|
|
||||||
EXTRA_OECONF:append:libc-musl = " --with-jemalloc-prefix=je_"
|
EXTRA_OECONF:append:libc-musl = " --with-jemalloc-prefix=je_"
|
||||||
|
|
||||||
|
do_compile_ptest() {
|
||||||
|
oe_runmake tests
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install_ptest() {
|
||||||
|
install -d ${D}${PTEST_PATH}/tests
|
||||||
|
subdirs="test/unit test/integration test/stress "
|
||||||
|
for tooltest in ${subdirs}
|
||||||
|
do
|
||||||
|
cp -r ${B}/${tooltest} ${D}${PTEST_PATH}/tests
|
||||||
|
done
|
||||||
|
find ${D}${PTEST_PATH}/tests \( -name "*.d" -o -name "*.o" \) -exec rm -f {} \;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user