mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 18:09:40 +01:00
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 Copyright4bd66d4549(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>
449 B
Executable File
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