1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Add test for making sure there are no spurious connect failures when using SSL

This commit is contained in:
unknown
2007-01-29 18:32:45 +01:00
parent f0aacbca63
commit fb8f2825fe

View File

@ -0,0 +1,13 @@
-- source include/have_openssl.inc
# Repeat connect/disconnect
let $i=100;
while ($i)
{
connect (test_con1,localhost,root,,,,,SSL);
disconnect test_con1;
dec $i;
}
echo completed;