mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
3880c80fc6
mysql-test/t/openssl_1.test: Add "have_ssl" as synonym for "have_openssl" Correct comment
13 lines
185 B
Text
13 lines
185 B
Text
|
|
-- source include/have_ssl.inc
|
|
|
|
# Repeat connect/disconnect
|
|
|
|
let $i=100;
|
|
while ($i)
|
|
{
|
|
connect (test_con1,localhost,root,,,,,SSL);
|
|
disconnect test_con1;
|
|
dec $i;
|
|
}
|
|
echo completed;
|