From: Bernd Edlinger Date: Thu, 20 Mar 2025 18:45:17 +0000 (+0100) Subject: Do not wrap the python3 in ../../util/wrap.pl X-Git-Tag: openssl-3.3.4~127 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7cda284159163750789d89f9bca1b6610eb20e1;p=thirdparty%2Fopenssl.git Do not wrap the python3 in ../../util/wrap.pl That is bad, because this script does seem to have issues, because it is itself linked against libcrypto, which causes crashes in enable-asan builds: ASan runtime does not come first in initial library list; you should either link runtime to your application or manually preload it with LD_PRELOAD. ../../util/wrap.pl python3 ../../test/recipes/70-test_quic_multistream_data/verify-qlog.py => 1 not ok 1 - running qlog verification script not ok 2 - check qlog output Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/27089) (cherry picked from commit f346932a15b5ce0cf7e42628e0b02a1871de93e1) --- diff --git a/test/recipes/70-test_quic_multistream.t b/test/recipes/70-test_quic_multistream.t index 7ab66f7e311..356382c6808 100644 --- a/test/recipes/70-test_quic_multistream.t +++ b/test/recipes/70-test_quic_multistream.t @@ -40,7 +40,7 @@ SKIP: { subtest "check qlog output" => sub { plan tests => 1; - ok(run(cmd(["python3", data_file("verify-qlog.py")])), + ok(run(cmd([data_file("verify-qlog.py")], exe_shell => "python3")), "running qlog verification script"); }; }