mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
It takes about a second to execute. The test suite is covered by a different license (lgpl 2.1+) than the main recipe (3-clause bsd). Sample output: root@qemux86-64:~# ptest-runner START: ptest-runner 2025-12-22T19:34 BEGIN: /usr/lib/uriparser/ptest [==========] Running 407 tests from 35 test suites. [----------] Global test environment set-up. [----------] 14 tests from CopyUriSuite PASS: CopyUriSuite.ErrorSourceUriNull PASS: CopyUriSuite.ErrorDestUriNull [...many lines...] PASS: SetUserInfo.UriWithoutHostNonNullRejected [----------] 2 tests from VersionSuite PASS: VersionSuite.EnsureVersionDefinesInSync PASS: VersionSuite.EnsureRuntimeVersionAsExpected [----------] Global test environment tear-down [==========] 407 tests from 35 test suites ran. [ PASSED ] 407 tests. DURATION: 1 END: /usr/lib/uriparser/ptest 2025-12-22T19:34 STOP: ptest-runner TOTAL: 1 FAIL: 0 Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
31 lines
1013 B
BlitzBasic
31 lines
1013 B
BlitzBasic
SUMMARY = "RFC 3986 compliant URI parsing library"
|
|
HOMEPAGE = "https://uriparser.github.io"
|
|
|
|
LICENSE = "BSD-3-Clause & LGPL-2.1-or-later"
|
|
LICENSE:${PN} = "BSD-3-Clause"
|
|
LICENSE:${PN}-ptest = "LGPL-2.1-or-later"
|
|
|
|
LIC_FILES_CHKSUM = "file://src/COPYING;md5=fcc5a53146c2401f4b4f6a3bdf3f0168 \
|
|
file://test/COPYING;md5=b9e6430863a3ea22cf4b0a8518279ed3"
|
|
|
|
SRC_URI = "https://github.com/${BPN}/${BPN}/releases/download/${BP}/${BP}.tar.gz \
|
|
file://run-ptest"
|
|
SRC_URI[sha256sum] = "291f25264a5c025005b1bc39de3c029e6a6ca0a8d6cfa5e61cb5b03702c0884d"
|
|
|
|
inherit cmake github-releases ptest
|
|
|
|
UPSTREAM_CHECK_REGEX = "releases/tag/${BPN}-(?P<pver>\d+(\.\d+)+)"
|
|
|
|
PACKAGECONFIG = "${@bb.utils.contains('PTEST_ENABLED', '1', 'test', '', d)} "
|
|
PACKAGECONFIG[test] = "-DURIPARSER_BUILD_TESTS:BOOL=ON, -DURIPARSER_BUILD_TESTS:BOOL=OFF, googletest"
|
|
|
|
EXTRA_OECMAKE += " \
|
|
-DURIPARSER_BUILD_DOCS:BOOL=OFF \
|
|
"
|
|
|
|
do_install_ptest(){
|
|
install ${B}/testrunner ${D}${PTEST_PATH}
|
|
}
|
|
|
|
BBCLASSEXTEND += "native"
|