]> git.ipfire.org Git - thirdparty/haproxy.git/commit
REGTESTS: quic: fix a TLS stack usage master
authorFrederic Lecaille <flecaille@haproxy.com>
Thu, 11 Dec 2025 12:23:18 +0000 (13:23 +0100)
committerFrederic Lecaille <flecaille@haproxy.com>
Mon, 15 Dec 2025 08:44:42 +0000 (09:44 +0100)
commit8523a5cde057292613be22966dbefeab4cfd8993
tree1f9d4edd9bc2e5ee27fddbd77ce2c2760eb755a9
parenta25394b6c83a820f1fa2df7673819c0e44a0d8cd
REGTESTS: quic: fix a TLS stack usage

This issue was reported in GH #3214 where quic/tls13_ssl_crt-list_filters.vtc
QUIC reg test was run without haproxy QUIC support due to OPENSSL_AWSLC enabled
featured.

This is due to the fact that when ssl/tls13_ssl_crt-list_filters.vtc has been
ported to QUIC the feature(OPENSSL) was silly replaced by feature(QUIC) leading
the script to be run even without QUIC support if OR'ed OPENSSL_AWSLC feature is
enabled.

A good method to port these feature() commands to QUIC would have been
to add a feature(QUIC) command seperated from the one used for the supported
TLS stacks identified by the original underlying ssl reg tests (in reg-tests/ssl).
This is what is done by this patch.

Thank you to @idl0r for having reported this issue.
reg-tests/quic/tls13_ssl_crt-list_filters.vtc