Commit 8c142aef authored by msvensson@neptunus.(none)'s avatar msvensson@neptunus.(none)
Browse files

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

parent 751d00c4
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line

-- 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;