diff options
author | unknown <msvensson@neptunus.(none)> | 2005-10-13 11:28:06 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2005-10-13 11:28:06 +0200 |
commit | c7ff3bdb987e2e336c174c6cee521900932a6a53 (patch) | |
tree | b16d012169c367cc7c751e20be9b2a01fc98c63e /mysql-test/t/ssl_compress.test | |
parent | efc190e7d9e4f17ec320f56a0b8f851d1c67103a (diff) | |
download | mariadb-git-c7ff3bdb987e2e336c174c6cee521900932a6a53.tar.gz |
Updated after testing
mysql-test/mysql-test-run.pl:
Improved printouts
mysql-test/r/compress.result:
Updated test result
mysql-test/r/ssl.result:
Updated test result
mysql-test/r/ssl_compress.result:
Updated test result
mysql-test/t/compress.test:
Use new connection
Use common include file
Test feature is turned on both before and after tests
mysql-test/t/ssl.test:
Use new connection
Use common include file
Test feature is turned on both before and after tests
mysql-test/t/ssl_compress.test:
Use new connection
Use common include file
Test feature is turned on both before and after tests
Diffstat (limited to 'mysql-test/t/ssl_compress.test')
-rw-r--r-- | mysql-test/t/ssl_compress.test | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/mysql-test/t/ssl_compress.test b/mysql-test/t/ssl_compress.test index 2d40b85c33d..f5fe86e9a81 100644 --- a/mysql-test/t/ssl_compress.test +++ b/mysql-test/t/ssl_compress.test @@ -4,11 +4,7 @@ -- source include/have_openssl.inc -- source include/have_compress.inc - -# Reconnect to turn ssl and compress on for -# default connection -disconnect default; -connect (default,localhost,root,,,,,SSL COMPRESS); +connect (ssl_compress_con,localhost,root,,,,,SSL COMPRESS); # Check ssl turned on SHOW STATUS LIKE 'Ssl_cipher'; @@ -17,5 +13,10 @@ SHOW STATUS LIKE 'Ssl_cipher'; SHOW STATUS LIKE 'Compression'; # Source select test case --- source t/select.test +-- source include/common-tests.inc + +# Check ssl turned on +SHOW STATUS LIKE 'Ssl_cipher'; +# Check compression turned on +SHOW STATUS LIKE 'Compression'; |