REGTESTS: ssl: fix grep invocation to use extended regex in ssl_generate_certificate.vtc

in 2f2a2884b7464ccb56469cb94d8a1ae4015a8cb6 grep should have use regex flag -E, but flag
was lost by mistake

(cherry picked from commit b6189bc268255b799a77fdffcaaa7b221ca2d7a9)
Signed-off-by: Christopher Faulet <cfaulet@haproxy.com>
This commit is contained in:
Ilya Shipitsin 2022-08-06 22:40:41 +05:00 committed by Christopher Faulet
parent a4ea870b46
commit 26ac4503fc

View File

@ -164,5 +164,5 @@ shell {
}
shell {
echo "Q" | openssl s_client -unix "${tmpdir}/ssl_P-384.sock" -servername server.ecdsa.com 2>/dev/null| grep "Temp Key: ECDH,.+, 384 bits"
echo "Q" | openssl s_client -unix "${tmpdir}/ssl_P-384.sock" -servername server.ecdsa.com 2>/dev/null| grep -E "Temp Key: ECDH,.+, 384 bits"
}