You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
602 B

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