From: Pratik Farkase Date: Thu, 21 May 2026 07:49:10 +0000 (+0200) Subject: libxslt: add ptest support X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=fa4328b70af3e6bad42970322a5874c192761c6d;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git libxslt: add ptest support Add ptest support for libxslt, running the upstream runtest binary which validates XSLT transformations across REC conformance, general, encoding, documents, numbers, keys, namespaces, extensions, reports, and EXSLT function tests. Tested on qemux86-64 with ptest-runner: 748 tests, 0 errors (9s). Signed-off-by: Pratik Farkase Signed-off-by: Antonin Godard Signed-off-by: Richard Purdie --- diff --git a/meta/conf/distro/include/ptest-packagelists.inc b/meta/conf/distro/include/ptest-packagelists.inc index 5238013c6b..f3f42f908a 100644 --- a/meta/conf/distro/include/ptest-packagelists.inc +++ b/meta/conf/distro/include/ptest-packagelists.inc @@ -58,6 +58,7 @@ PTESTS_FAST = "\ libxml-simple-perl \ libxml2 \ libxmlb \ + libxslt \ libyaml \ logrotate \ lua \ diff --git a/meta/recipes-support/libxslt/libxslt/run-ptest b/meta/recipes-support/libxslt/libxslt/run-ptest new file mode 100755 index 0000000000..c321fdc606 --- /dev/null +++ b/meta/recipes-support/libxslt/libxslt/run-ptest @@ -0,0 +1,11 @@ +#!/bin/sh +# SPDX-License-Identifier: MIT + +cd "$(dirname "$0")/tests" || exit 1 + +./runtest 2>&1 +if [ $? -eq 0 ]; then + echo "PASS: runtest" +else + echo "FAIL: runtest" +fi diff --git a/meta/recipes-support/libxslt/libxslt_1.1.45.bb b/meta/recipes-support/libxslt/libxslt_1.1.45.bb index 449ea2dd24..bdfd8f1737 100644 --- a/meta/recipes-support/libxslt/libxslt_1.1.45.bb +++ b/meta/recipes-support/libxslt/libxslt_1.1.45.bb @@ -13,7 +13,9 @@ LIC_FILES_CHKSUM = "file://Copyright;md5=0cd9a07afbeb24026c9b03aecfeba458" SECTION = "libs" DEPENDS = "libxml2" -SRC_URI = "https://download.gnome.org/sources/libxslt/1.1/libxslt-${PV}.tar.xz" +SRC_URI = "https://download.gnome.org/sources/libxslt/1.1/libxslt-${PV}.tar.xz \ + file://run-ptest \ + " SRC_URI[sha256sum] = "9acfe68419c4d06a45c550321b3212762d92f41465062ca4ea19e632ee5d216e" @@ -25,7 +27,7 @@ S = "${UNPACKDIR}/libxslt-${PV}" BINCONFIG = "${bindir}/xslt-config" -inherit autotools pkgconfig binconfig-disabled lib_package multilib_header +inherit autotools pkgconfig binconfig-disabled lib_package multilib_header ptest do_configure:prepend () { # We don't DEPEND on binutils for ansidecl.h so ensure we don't use the header. @@ -56,3 +58,20 @@ FILES:${PN} += "${libdir}/libxslt-plugins" FILES:${PN}-dev += "${libdir}/xsltConf.sh" BBCLASSEXTEND = "native nativesdk" + +RDEPENDS:${PN}-ptest:append:libc-glibc = " glibc-gconv-cp1251" + +do_compile_ptest() { + oe_runmake -C ${B}/tests runtest +} + +do_install_ptest() { + install -d ${D}${PTEST_PATH}/tests + + ${B}/libtool --mode=install install -m 0755 ${B}/tests/runtest ${D}${PTEST_PATH}/tests/ + + for d in general REC REC2 documents encoding exslt extensions \ + keys namespaces numbers plugins reports; do + cp -r ${S}/tests/$d ${D}${PTEST_PATH}/tests/ + done +}