The quic_multistream_test has a 60-second internal per-operation deadline that is too tight under QEMU emulation on loaded autobuilder hosts. The test creates 200 server-initiated streams in a loop, and if any single operation exceeds 60s due to scheduling delays, the test fails with a timeout error.
It is tracked upstream as : https://github.com/openssl/openssl/issues/27104 [YOCTO #15357] Signed-off-by: Pratik Farkase <[email protected]> --- meta/recipes-connectivity/openssl/openssl/run-ptest | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/meta/recipes-connectivity/openssl/openssl/run-ptest b/meta/recipes-connectivity/openssl/openssl/run-ptest index cd29bb1446..aac0c5b55f 100644 --- a/meta/recipes-connectivity/openssl/openssl/run-ptest +++ b/meta/recipes-connectivity/openssl/openssl/run-ptest @@ -8,8 +8,11 @@ set -eu if test $# -gt 0; then TESTS=$* else - # Skip test_symbol_presence as this is for developers - TESTS="alltests -test_symbol_presence" + # Skip test_symbol_presence as this is for developers. + # Skip test_quic_multistream as it has a 60s internal timeout per + # operation that is too tight under QEMU emulation on loaded hosts, + # causing intermittent failures (upstream: https://github.com/openssl/openssl/issues/27104) + TESTS="alltests -test_symbol_presence -test_quic_multistream" fi export TOP=. -- 2.43.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#243283): https://lists.openembedded.org/g/openembedded-core/message/243283 Mute This Topic: https://lists.openembedded.org/mt/120716343/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
