Commit 70894cb9 authored by unknown's avatar unknown

Make it possible to specify test specifi config file as <testname>.cnf


mysql-test/suite/rpl/t/rpl_000015.cnf:
  Use test specific config file
mysql-test/suite/rpl/t/rpl_rotate_logs.cnf:
  Use test specific config file
parent 3fb9f1c6
...@@ -754,6 +754,15 @@ sub collect_one_test_case { ...@@ -754,6 +754,15 @@ sub collect_one_test_case {
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
process_opts_file($tinfo, "$testdir/$tname-slave.opt", 'slave_opt'); process_opts_file($tinfo, "$testdir/$tname-slave.opt", 'slave_opt');
# ----------------------------------------------------------------------
# Check for test specific config file
# ----------------------------------------------------------------------
my $test_cnf_file= "$testdir/$tname.cnf";
if ( -f $test_cnf_file ) {
# Specifies the configuration file to use for this test
$tinfo->{'template_path'}= $test_cnf_file;
}
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# master sh # master sh
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
......
--config-file-template=../rpl_1slave_base.cnf
!include ../rpl_1slave_base.cnf
-O max_binlog_size=4096
--config-file-template=../rpl_1slave_base.cnf
!include ../rpl_1slave_base.cnf
[mysqld.1]
max_binlog_size=4096
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment