libcereal: 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:
Mingli Yu
2022-03-10 13:30:40 +08:00
committed by Khem Raj
parent e4745eab4e
commit 045fe61e30
2 changed files with 27 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
cd tests
for atest in test_* ; do
rm -rf tests.log
./${atest} > tests.log 2>&1
if [ $? = 0 ] ; then
echo "PASS: ${atest}"
else
echo "FAIL: ${atest}"
fi
done
@@ -12,17 +12,29 @@ LIC_FILES_CHKSUM = "\
file://include/cereal/external/rapidjson/msinttypes/LICENSE;md5=dffce65b98c773976de2e338bd130f46 \
"
DEPENDS = " ${@bb.utils.contains('DISTRO_FEATURES', 'ptest', 'boost', '', d)} "
PROVIDES += "${PN}-dev"
PV .= "+git${SRCPV}"
SRCREV = "ebef1e929807629befafbb2918ea1a08c7194554"
SRC_URI = "git://github.com/USCiLab/cereal.git;branch=master;protocol=https"
SRC_URI = "git://github.com/USCiLab/cereal.git;branch=master;protocol=https \
file://run-ptest \
"
S = "${WORKDIR}/git"
inherit cmake pkgconfig
inherit cmake pkgconfig ptest
EXTRA_OECMAKE = "-DJUST_INSTALL_CEREAL=ON"
PACKAGECONFIG ??= "${@bb.utils.contains('PTEST_ENABLED', '1', 'with-tests', '', d)}"
PACKAGECONFIG[with-tests] = "-DBUILD_TESTS=ON -DSKIP_PORTABILITY_TEST=ON,,"
EXTRA_OECMAKE = "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', '', '-DJUST_INSTALL_CEREAL=ON', d)}"
do_install_ptest() {
install -d ${D}${PTEST_PATH}/tests
cp ${B}/unittests/test_* ${D}${PTEST_PATH}/tests
}
ALLOW_EMPTY:${PN} = "1"