mirror of
https://git.yoctoproject.org/poky
synced 2026-06-10 16:10:04 +00:00
28eb7f6633
(From OE-Core rev: 124921683e9a0a1d981eaeea717c5dd7d35abf90) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
60 lines
1.5 KiB
BlitzBasic
60 lines
1.5 KiB
BlitzBasic
SUMMARY = "Musl libc unit tests"
|
|
HOMEPAGE = "https://wiki.musl-libc.org/libc-test.html"
|
|
DESCRIPTION = "libc-test is a collection of unit tests to measure the \
|
|
correctness and robustness of a C/POSIX standard library implementation. It is \
|
|
developed as part of the musl project."
|
|
SECTION = "tests"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=43ed1245085be90dc934288117d55a3b"
|
|
|
|
inherit ptest
|
|
|
|
SRCREV = "f2bac7711bec93467b73bec1465579ea0b8d5071"
|
|
SRC_URI = " \
|
|
git://repo.or.cz/libc-test;branch=master;protocol=https \
|
|
file://0001-Fix-strptime-on-musl.patch \
|
|
file://0001-api-unistd-guard-optional-obsolete-_PC-_SC-constants.patch \
|
|
file://run-ptest \
|
|
file://run-libc-ptests \
|
|
"
|
|
|
|
PV = "0+git"
|
|
|
|
# libc-test 'make' or 'make run' command is designed to build and run tests. It
|
|
# reports both build and test failures. The commands should be run on target.
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
RDEPENDS:${PN} = " \
|
|
bash \
|
|
grep \
|
|
musl \
|
|
packagegroup-core-buildessential \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest = " \
|
|
${PN} \
|
|
locale-base-en-us \
|
|
musl-staticdev \
|
|
sed \
|
|
tzdata \
|
|
"
|
|
|
|
install_path = "/opt/${PN}"
|
|
FILES:${PN} += "${install_path}/*"
|
|
|
|
do_install () {
|
|
install -d ${D}${install_path}/
|
|
cp ${S}/Makefile ${D}${install_path}
|
|
cp ${S}/config.mak.def ${D}${install_path}/config.mak
|
|
cp -r ${S}/src ${D}${install_path}
|
|
}
|
|
|
|
do_install_ptest_base:append() {
|
|
install -Dm 0755 ${UNPACKDIR}/run-libc-ptests ${D}${PTEST_PATH}/run-libc-ptests
|
|
}
|
|
|
|
COMPATIBLE_HOST = "null"
|
|
COMPATIBLE_HOST:libc-musl = "(.*)"
|