/usr/lib/mysql-testsuite/t/ssl-sha512.test is in percona-server-test-5.6 5.6.22-rel71.0-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | -- source include/not_embedded.inc
CREATE USER u1@localhost IDENTIFIED BY 'secret';
GRANT SELECT ON test.* TO u1@localhost REQUIRE SSL;
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
--exec $MYSQL -uu1 -psecret -h127.0.0.1 --ssl-ca=$MYSQL_TEST_DIR/std_data/ca-sha512.pem --ssl-cipher=EDH-RSA-DES-CBC3-SHA test -e "SHOW VARIABLES like '%ssl%';"
DROP USER u1@localhost;
|