mirror of
https://github.com/MariaDB/server.git
synced 2025-02-07 06:12:18 +01:00
![Thirunarayanan Balathandayuthapani](/assets/img/avatar_default.png)
- Few of test case should make sure that InnoDB does hit the debug sync point during startup of the server. InnoDB can remove the double quotes of debug point in restart parameters.
14 lines
800 B
Text
14 lines
800 B
Text
--source include/have_innodb.inc
|
|
--source include/have_debug.inc
|
|
call mtr.add_suppression("InnoDB: Cannot allocate memory for the buffer pool");
|
|
call mtr.add_suppression("InnoDB: Plugin initialization aborted at srv0start.cc.*");
|
|
call mtr.add_suppression("Plugin 'InnoDB' init function returned error.");
|
|
call mtr.add_suppression("Plugin 'InnoDB' registration as a STORAGE ENGINE failed.");
|
|
--echo #
|
|
--echo # MDEV-25019 memory allocation failures during startup cause server failure in different, confusing ways
|
|
--echo #
|
|
let restart_parameters=--debug_dbug=+d,ib_buf_chunk_init_fails;
|
|
--source include/restart_mysqld.inc
|
|
let SEARCH_FILE = $MYSQLTEST_VARDIR/log/mysqld.1.err;
|
|
let SEARCH_PATTERN=\[ERROR\] InnoDB: Cannot allocate memory for the buffer pool;
|
|
--source include/search_pattern_in_file.inc
|