~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to mysql-test/t/ssl_cipher.test

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Turn on ssl between the client and server
 
2
# and run a number of tests
 
3
 
 
4
--echo #
 
5
--echo # BUG#11760210 - SSL_CIPHER_LIST NOT SET OR RETURNED FOR "SHOW STATUS LIKE 'SSL_CIPHER_LIST'"
 
6
--echo #
 
7
 
 
8
-- source include/have_ssl.inc
 
9
 
 
10
# Save the initial number of concurrent sessions
 
11
--source include/count_sessions.inc
 
12
 
 
13
connect (ssl_con,localhost,root,,,,,SSL);
 
14
 
 
15
# Check Cipher Name and Cipher List
 
16
SHOW STATUS LIKE 'Ssl_cipher';
 
17
SHOW STATUS LIKE 'Ssl_cipher_list';
 
18
 
 
19
connection default;
 
20
disconnect ssl_con;
 
21
 
 
22
# Wait till all disconnects are completed
 
23
--source include/wait_until_count_sessions.inc