tomlplusplus: Add ptest support

# ./run-ptest
PASS: tomlplusplus_odr_test
PASS: tomlplusplus_tests

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 2024-10-12 18:01:46 +08:00 committed by Khem Raj
parent 3490ba3384
commit 8917528948
No known key found for this signature in database
GPG Key ID: BB053355919D3314
2 changed files with 25 additions and 2 deletions

View File

@ -0,0 +1,12 @@
#!/bin/sh
cd tests
for atest in tomlplusplus_* ; do
rm -rf tests.log
./${atest} > tests.log 2>&1
if [ $? = 0 ] ; then
echo "PASS: ${atest}"
else
echo "FAIL: ${atest}"
fi
done

View File

@ -3,7 +3,9 @@ HOMEPAGE = "https://github.com/marzer/tomlplusplus"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=90960f22c10049c117d56ed2ee5ee167"
SRC_URI = "git://github.com/marzer/tomlplusplus.git;protocol=https;branch=master"
SRC_URI = "git://github.com/marzer/tomlplusplus.git;protocol=https;branch=master \
file://run-ptest \
"
PV = "3.4.0"
SRCREV = "30172438cee64926dc41fdd9c11fb3ba5b2ba9de"
@ -11,4 +13,13 @@ S = "${WORKDIR}/git"
DEPENDS = "cmake-native"
inherit meson
inherit meson ptest
EXTRA_OEMESON += "-Dbuild_tests=${@bb.utils.contains("DISTRO_FEATURES", "ptest", "true", "false", d)} \
"
do_install_ptest () {
install -d ${D}${PTEST_PATH}/tests
cp ${B}/tests/tomlplusplus_odr_test ${D}${PTEST_PATH}/tests
cp ${B}/tests/tomlplusplus_tests ${D}${PTEST_PATH}/tests
}