Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
4a490373
Commit
4a490373
authored
Apr 25, 2008
by
msvensson@pilot.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it possible to specify test specifi config file as <testname>.cnf
parent
452c6614
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
5 deletions
+17
-5
mysql-test/lib/mtr_cases.pm
mysql-test/lib/mtr_cases.pm
+9
-0
mysql-test/suite/rpl/t/rpl_000015-master.opt
mysql-test/suite/rpl/t/rpl_000015-master.opt
+0
-2
mysql-test/suite/rpl/t/rpl_000015.cnf
mysql-test/suite/rpl/t/rpl_000015.cnf
+2
-0
mysql-test/suite/rpl/t/rpl_rotate_logs-master.opt
mysql-test/suite/rpl/t/rpl_rotate_logs-master.opt
+0
-3
mysql-test/suite/rpl/t/rpl_rotate_logs.cnf
mysql-test/suite/rpl/t/rpl_rotate_logs.cnf
+6
-0
No files found.
mysql-test/lib/mtr_cases.pm
View file @
4a490373
...
...
@@ -754,6 +754,15 @@ sub collect_one_test_case {
# ----------------------------------------------------------------------
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
# ----------------------------------------------------------------------
...
...
mysql-test/suite/rpl/t/rpl_000015-master.opt
deleted
100644 → 0
View file @
452c6614
--config-file-template=../rpl_1slave_base.cnf
mysql-test/suite/rpl/t/rpl_000015.cnf
0 → 100644
View file @
4a490373
!include ../rpl_1slave_base.cnf
mysql-test/suite/rpl/t/rpl_rotate_logs-master.opt
deleted
100644 → 0
View file @
452c6614
-O max_binlog_size=4096
--config-file-template=../rpl_1slave_base.cnf
mysql-test/suite/rpl/t/rpl_rotate_logs.cnf
0 → 100644
View file @
4a490373
!include ../rpl_1slave_base.cnf
[mysqld.1]
max_binlog_size=4096
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment