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
90d65464
Commit
90d65464
authored
Nov 28, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge neptunus.(none):/home/msvensson/mysql/work/my41-work
into neptunus.(none):/home/msvensson/mysql/work/my50-work
parents
8a076120
afe91a26
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
18 deletions
+7
-18
mysql-test/lib/mtr_process.pl
mysql-test/lib/mtr_process.pl
+2
-3
mysql-test/lib/mtr_report.pl
mysql-test/lib/mtr_report.pl
+5
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+0
-14
No files found.
mysql-test/lib/mtr_process.pl
View file @
90d65464
...
...
@@ -708,7 +708,7 @@ sub mtr_wait_blocking($) {
}
}
# Start "mysqladmin
shutdown
" for a specific mysqld
# Start "mysqladmin
<command>
" for a specific mysqld
sub
mtr_mysqladmin_start
($$$)
{
my
$srv
=
shift
;
my
$command
=
shift
;
...
...
@@ -738,9 +738,8 @@ sub mtr_mysqladmin_start($$$) {
# Shutdown time must be high as slave may be in reconnect
mtr_add_arg
(
$args
,
"
--shutdown_timeout=
$adm_shutdown_tmo
");
mtr_add_arg
(
$args
,
"
$command
");
my
$path_mysqladmin_log
=
"
$::opt_vardir/log/mysqladmin.log
";
my
$pid
=
mtr_spawn
(
$::exe_mysqladmin
,
$args
,
"",
$path_mysqladmin_log
,
$path_mysqladmin_log
,
"",
"",
"",
""
,
"",
{
append_log_file
=>
1
});
mtr_verbose
("
mtr_mysqladmin_start, pid:
$pid
");
return
$pid
;
...
...
mysql-test/lib/mtr_report.pl
View file @
90d65464
...
...
@@ -94,10 +94,14 @@ sub mtr_report_test_skipped ($) {
{
print
"
[ disabled ]
$tinfo
->{'comment'}
\n
";
}
els
e
els
if
(
$tinfo
->
{'
comment
'}
)
{
print
"
[ skipped ]
$tinfo
->{'comment'}
\n
";
}
else
{
print
"
[ skipped ]
\n
";
}
}
sub
mtr_report_tests_not_skipped_though_disabled
($)
{
...
...
mysql-test/mysql-test-run.pl
View file @
90d65464
...
...
@@ -66,7 +66,6 @@ use IO::Socket::INET;
use
Data::
Dumper
;
use
strict
;
use
warnings
;
use
diagnostics
;
select
(
STDOUT
);
$|
=
1
;
# Automatically flush STDOUT
...
...
@@ -1976,19 +1975,6 @@ sub kill_running_servers () {
# This is different from terminating processes we have
# started from this run of the script, this is terminating
# leftovers from previous runs.
if
(
!
-
d
$opt_vardir
)
{
if
(
-
l
$opt_vardir
and
!
-
d
readlink
(
$opt_vardir
)
)
{
mtr_report
("
Removing
$opt_vardir
symlink without destination
");
unlink
(
$opt_vardir
);
}
# The "var" dir does not exist already
# the processes that mtr_kill_leftovers start will write
# their log files to var/log so it should be created
mkpath
("
$opt_vardir
/log
");
}
mtr_kill_leftovers
();
}
}
...
...
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