mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
cb96f195c8
- Added show status variable "compression" for checking that compression is turned on. - Updated show status variable "have_openssl" to be set to DISABLED if server supports ssl but it's not turned on to accept incoming ssl connections. - Setup server to accept ssl connections from clients ig that is supported by server - New tests - ssl - Run with ssl turned on - ssl_compress - Run with ssl and compression turned on - compress - Run with compression turned in - Updated test - openssl_1, rpl_openssl1 - Changed to run if server supports ssl
21 lines
351 B
Text
21 lines
351 B
Text
# Turn on ssl between the client and server
|
|
# and run a number of tests
|
|
|
|
-- source include/have_openssl.inc
|
|
|
|
enable_ssl;
|
|
|
|
# Reconnect to turn ssl on for
|
|
# default connection
|
|
disconnect default;
|
|
connect (default,localhost,root,,);
|
|
|
|
# Check ssl turned on
|
|
SHOW STATUS LIKE 'Ssl_cipher';
|
|
|
|
# Source select test case
|
|
-- source t/select.test
|
|
|
|
disable_ssl;
|
|
|
|
|