mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
The recommendation from server maintainers is that the https protocol is both faster and more reliable than the dedicated git protocol at this point. Switch to it where possible. (From OE-Core rev: 8f3669f81db8a58f8ed2faef76acab3499f59619) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 139102a73d4151f4748b4a861bd4ab28dda7dab7) Signed-off-by: Steve Sakoman <steve@sakoman.com>
52 lines
1.2 KiB
BlitzBasic
52 lines
1.2 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 = "18e28496adee3d84fefdda6efcb9c5b8996a2398"
|
|
SRC_URI = " \
|
|
git://repo.or.cz/libc-test;branch=master;protocol=https \
|
|
file://run-ptest \
|
|
"
|
|
|
|
PV = "0+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/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} \
|
|
sed \
|
|
"
|
|
|
|
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}
|
|
}
|
|
|
|
COMPATIBLE_HOST = "null"
|
|
COMPATIBLE_HOST:libc-musl = "(.*)"
|