mirror of
https://github.com/MariaDB/server.git
synced 2026-05-03 13:45:34 +02:00
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;
|