config root man

Current Path : /usr/opt/mysql57/mysql-test/suite/innodb/t/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/opt/mysql57/mysql-test/suite/innodb/t/log_file_size_checkpoint.test

--source include/have_innodb.inc
--source include/not_embedded.inc
--source include/no_valgrind_without_big.inc

let $n=250;
let $t=veryLongTableNameToCreateMLOG_FILE_NAMErecords;

--disable_query_log
call mtr.add_suppression("InnoDB: Resizing redo log");
call mtr.add_suppression("InnoDB: Starting to delete and rewrite log files");
call mtr.add_suppression("InnoDB: New log files created");

let $i=$n;
while ($i)
{
--eval CREATE TABLE $t$i(a INT PRIMARY KEY) ENGINE=InnoDB;
dec $i;
}

# If we set above n to 500, this test case could fail easily, because
# the inndob buffer pool is too small, some of which would be occupied
# by the recv*. With n=250, this test case could sporadically fail too.
# So we have to set buffer pool size to 50M which should be enough for this
# test case. Once we fix the bug#22179133 and bug#22186325, we should use
# the default innodb buffer pool(or the smaller one).
let $restart_parameters = restart: --innodb-log-files-in-group=2 --innodb-log-file-size=4M --innodb-buffer-pool-size=50M;
--source include/kill_and_restart_mysqld.inc

--disable_query_log
let $i=$n;
while ($i)
{
--eval DROP TABLE $t$i;
dec $i;
}
--enable_query_log

Man Man