mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-31 13:20:03 +00:00
2d1e7f1716
Also fix ptests. Changelog: 1.26: -Avoid test failure on RedHat by requiring DSA-SHA1 opt-in. -Fix: Rocky linux 9: libcrypto error 1.25: -Suppress AUTOLOAD for Net::DNS::SEC::Private::_index. -Abandon support for OpenSSL pre-1.1.1 API. -Fix: Tests exhibiting signatures with SHA-1 fail since Fedora 41 -Fix: Net::DNS minimum version dependency 1.24: -Eliminate deprecated RSA CRT parameter names. -Add support for SM3 digest. 1.23: -Code refactoring of XS component. 1.22: -Enable Ed25519 sign/verify for BoringSSL & LibreSSL. -Use EC curve names instead of literal NIDs. -Circumvent sign/verify test failures on EBCDIC platforms. -Fix: openssl-SNAP-20230831 breaks RSA sign/verify 1.21: -Add new t/TestToolkit.pm -Rework pre-installation test scripts. - Fix: libressl-3.7.1 breaks DSA verify 1.20: -Improve Net::DNS::SEC::Keyset tests and error reporting. -Avoid test failures if/when DSA|MD5|SHA1 become unsupported. 1.19: -Discontinue support for obsolete ECC-GOST. -Add LICENSE file to comply with Fedora/RedHat announcement and WARNING of restrictions on use of strong cryptography. 1.18: -Eliminate bareword filehandle usage. -Eliminate indirect object syntax. -Eliminate grep/map <expression>. 1.17: -Recognise BIND private key accessed via symbolic link. 1.16: -Improve testing of verify() functions. -Rework code in Digest.pm -SEC.xs code reduction. 1.15: -Provide access to OpenSSL message digest implementations. 1.14: -Improve exception capture in test scripts. -Support more efficient algorithm mapping in Net::DNS. 1.13: -Tweaks to resolve compilation errors with BoringSSL. 1.12: -Avoid use of EC_POINT_set_affine_coordinates_GFp which is deprecated in OpenSSL 3.0.0 -Reduce level of support for OpenSSL non-LTS releases. 1.11: -Explain why compilation aborted in Net::DNS::SEC::DSA et al. -Fix Makefile.PL to suppress parallel test execution. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
55 lines
1.5 KiB
HTML
55 lines
1.5 KiB
HTML
#
|
|
# Lists of the ptest in meta-perl, sorted into two sets by the time they take
|
|
# Please keep these sorted in alphabetical order
|
|
#
|
|
# A first pass at getting all meta-perl recipes which inherit ptest
|
|
# meta_perl_ptest_recipes=$(bitbake-layers show-recipes --recipes-only --layer meta-perl --inherits ptest --bare | tr '\n' ' ' | pcregrep -o1 '^NOTE:.+===(.+)$')
|
|
#
|
|
# ptests which take less than ~30s each
|
|
PTESTS_FAST_META_PERL = "\
|
|
libauthen-sasl-perl \
|
|
libcapture-tiny-perl \
|
|
libcrypt-openssl-guess-perl \
|
|
libcrypt-openssl-random-perl \
|
|
libcrypt-openssl-rsa-perl \
|
|
libcgi-perl \
|
|
libdata-hexdump-perl \
|
|
libdbd-sqlite-perl \
|
|
libdigest-hmac-perl \
|
|
libdigest-sha1-perl \
|
|
liberror-perl \
|
|
libextutils-config-perl \
|
|
libextutils-installpaths-perl \
|
|
libfile-slurper-perl \
|
|
libhtml-tagset-perl \
|
|
libmime-base32-perl \
|
|
libmime-types-perl \
|
|
libmozilla-ca-perl \
|
|
libnet-dns-perl \
|
|
libnet-dns-sec-perl \
|
|
libnet-ldap-perl \
|
|
libnet-ssleay-perl \
|
|
libstrictures-perl \
|
|
libsub-uplevel-perl \
|
|
libterm-readkey-perl \
|
|
libtest-deep-perl \
|
|
libtest-harness-perl \
|
|
libtest-nowarnings-perl \
|
|
libtest-warn-perl \
|
|
libtext-diff-perl \
|
|
libunicode-linebreak-perl \
|
|
liburi-perl \
|
|
"
|
|
|
|
PTESTS_SLOW_META_PERL = "\
|
|
libio-socket-ssl-perl \
|
|
"
|
|
|
|
PTESTS_PROBLEMS_META_PERL = "\
|
|
libconfig-autoconf-perl \
|
|
libhtml-parser-perl \
|
|
libmodule-build-tiny-perl \
|
|
libunix-statgrab \
|
|
libxml-libxml-perl \
|
|
"
|