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

This commit is contained in:
msvensson@neptunus.(none) 2007-01-29 18:32:45 +01:00
parent 751d00c47e
commit 8c142aef3f

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;