You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
185 B

  1. -- source include/have_ssl.inc
  2. # Repeat connect/disconnect
  3. let $i=100;
  4. while ($i)
  5. {
  6. connect (test_con1,localhost,root,,,,,SSL);
  7. disconnect test_con1;
  8. dec $i;
  9. }
  10. echo completed;