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
3f2c3f04
Commit
3f2c3f04
authored
Nov 17, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#24354 option "--extern" of mysql-test-run.pl does not work anymore
parent
770a4f7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+10
-3
No files found.
mysql-test/mysql-test-run.pl
View file @
3f2c3f04
...
...
@@ -3820,10 +3820,17 @@ sub run_testcase_need_master_restart($)
}
elsif
(
!
$master
->
[
0
]
->
{'
pid
'}
)
{
$do_restart
=
1
;
mtr_verbose
("
Restart master: master is not started
");
if
(
$opt_extern
)
{
$do_restart
=
0
;
mtr_verbose
("
No restart: using extern master
");
}
else
{
$do_restart
=
1
;
mtr_verbose
("
Restart master: master is not started
");
}
}
return
$do_restart
;
}
...
...
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