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
15158182
Commit
15158182
authored
Sep 19, 2006
by
msvensson@shellback.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge shellback.(none):/home/msvensson/mysql/work/my50-work
into shellback.(none):/home/msvensson/mysql/mysql-5.0-maint
parents
49275c0c
895d9862
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
12 deletions
+3
-12
mysql-test/lib/mtr_process.pl
mysql-test/lib/mtr_process.pl
+0
-8
mysql-test/lib/mtr_stress.pl
mysql-test/lib/mtr_stress.pl
+0
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+3
-3
No files found.
mysql-test/lib/mtr_process.pl
View file @
15158182
...
...
@@ -470,14 +470,6 @@ sub mtr_kill_leftovers () {
mtr_debug
("
Got pid:
$pid
from file '
$pidfile
'
");
# Race, could have been removed between I tested with -f
# and the unlink() below, so I better check again with -f
if
(
!
unlink
(
$pidfile
)
and
-
f
$pidfile
)
{
mtr_error
("
can't remove
$pidfile
");
}
if
(
$::glob_cygwin_perl
or
kill
(
0
,
$pid
)
)
{
mtr_debug
("
There is process with pid
$pid
-- scheduling for kill.
");
...
...
mysql-test/lib/mtr_stress.pl
View file @
15158182
...
...
@@ -21,7 +21,6 @@ sub run_stress_test ()
{
my
$args
;
my
$stress_basedir
;
my
$stress_suitedir
;
mtr_report
("
Starting stress testing
\n
");
...
...
mysql-test/mysql-test-run.pl
View file @
15158182
...
...
@@ -1309,7 +1309,7 @@ sub kill_running_server () {
{
# Ensure that no old mysqld test servers are running
# This is different from terminating processes we have
# started from ths run of the script, this is terminating
# started from th
i
s run of the script, this is terminating
# leftovers from previous runs.
mtr_report
("
Killing Possible Leftover Processes
");
...
...
@@ -2748,7 +2748,7 @@ sub stop_masters () {
my
@args
;
for
(
my
$idx
;
$idx
<
2
;
$idx
++
)
for
(
my
$idx
=
0
;
$idx
<
2
;
$idx
++
)
{
# FIXME if we hit ^C before fully started, this test will prevent
# the mysqld process from being killed
...
...
@@ -2779,7 +2779,7 @@ sub stop_slaves () {
my
@args
;
for
(
my
$idx
;
$idx
<
3
;
$idx
++
)
for
(
my
$idx
=
0
;
$idx
<
3
;
$idx
++
)
{
if
(
$slave
->
[
$idx
]
->
{'
pid
'}
)
{
...
...
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