In the test we check the error message when the target certificate is
revoked. Unfortunately the error message from OpenSSL seems to be
changed from v3.0 to v3.2.
v3.0 or before: "sslv3 alert certificate revoked"
v3.2: "ssl/tls alert certificate revoked"
So fix is checking only "alert certificate revoked" part.
$PSQL -h localhost -c "select 1" test > $dir/crl_session.log 2>&1
-grep "sslv3 alert certificate revoked" $dir/crl_session.log
+grep "alert certificate revoked" $dir/crl_session.log
if [ $? != 0 ];then
echo "Checking cert auth between Pgpool-II and frontend with revoked entry in CRL failed."