diff mbox series

[v1] openssl: ptest: skip test_quic_multistream due to intermittent timeout

Message ID 20260812120837.35922-1-pratik.farkase@est.tech
State Under Review
Headers show
Series [v1] openssl: ptest: skip test_quic_multistream due to intermittent timeout | expand

Commit Message

Pratik Farkase Aug. 12, 2026, 12:08 p.m. UTC
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 <pratik.farkase@est.tech>
---
 meta/recipes-connectivity/openssl/openssl/run-ptest | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
diff mbox series

Patch

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=.