Files
poky/meta/recipes-core/libxml/libxml2/run-ptest
Peter Marko 383df93c6f libxml2: upgrade 2.13.6 -> 2.14.3
Handle CVE-2025-32414 and CVE-2025-32415.

* rebased install-tests.patch
* removed testsuite testThreads (merged into runtest.c)
  * 481fd6bbee
* removed IPv6 option (as part of with ftp support removal)
  * dba1ed85a3
* added testsuites testlimits testparser (already present before but not executed)

License-Update: Mention contributors in Copyright
4bd66d4549

(From OE-Core rev: 6585649fdd2ab9e83dfd60eb77ff7821a1363d50)

Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2025-05-27 09:01:17 +01:00

449 B
Executable File

#!/bin/sh

set -e

export LC_ALL=en_US.UTF-8

testModule isn't that useful and hard-codes buildtree, so we don't run that

TESTS="runtest runsuite testrecurse testchar testdict runxmlconf testapi testlimits testparser"

for T in $TESTS; do echo Running $T ./$T && echo PASS: $T || echo FAIL: $T done

if test -d python/tests; then cd python/tests for T in *.py; do python3 ./$T && echo PASS: $T || echo FAIL: $T done fi