There might be warnings from AFL fuzz checker
or other warnings that we do not care about.
For success it is just required that cert_status: ocsp response sent:
is present.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23851)
if (/^cert_status: ocsp response sent:/) {
$resp = 1;
last;
- } elsif (/^cert_status:/) {
- ;
- } else {
- last;
}
}
ok($resp == 1, "check s_server sent ocsp response");