mirror of
https://github.com/MariaDB/server.git
synced 2025-05-13 01:01:44 +03:00
Removed the global suppression, added lots of local ones to affected tests Re-commit, now kept "Slave SQL" at start of patterns.
14 lines
510 B
Plaintext
14 lines
510 B
Plaintext
include/master-slave.inc
|
|
[connection master]
|
|
call mtr.add_suppression("Failed during slave I/O thread initialization");
|
|
call mtr.add_suppression("Slave SQL.*Failed during slave thread initialization.* 1593");
|
|
include/stop_slave.inc
|
|
reset slave;
|
|
SET GLOBAL debug="d,simulate_io_slave_error_on_init,simulate_sql_slave_error_on_init";
|
|
start slave;
|
|
include/wait_for_slave_sql_error.inc [errno=1593]
|
|
Last_SQL_Error = 'Failed during slave thread initialization'
|
|
SET GLOBAL debug="";
|
|
RESET SLAVE;
|
|
include/rpl_end.inc
|