mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 09:44:17 +01:00
5e0832e132
- Increased timeout for binlog_mysqlbinlog_raw_flush.test. The old timeout was not enough when running with --valgrind - Disabled ssl_timeout for --valgrind as it times out - Disabled binlog_truncate_multi_engine for --valgrind as it does restarts
22 lines
674 B
Text
22 lines
674 B
Text
--source include/have_ssl_communication.inc
|
|
# Do not run this test with valgrind as may timeout
|
|
--source include/not_valgrind.inc
|
|
|
|
# Save the initial number of concurrent sessions
|
|
--source include/count_sessions.inc
|
|
|
|
--echo # connect with read timeout so SLEEP() should timeout
|
|
connect (ssl_con,localhost,root,,,,,SSL read_timeout=5);
|
|
|
|
--echo # Check ssl turned on
|
|
SELECT (VARIABLE_VALUE <> '') AS have_ssl FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME='Ssl_cipher';
|
|
|
|
# --error CR_SERVER_LOST
|
|
--error 2013,2026
|
|
SELECT SLEEP(600);
|
|
|
|
connection default;
|
|
disconnect ssl_con;
|
|
|
|
# Wait till all disconnects are completed
|
|
--source include/wait_until_count_sessions.inc
|