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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
753eff2a
Commit
753eff2a
authored
Oct 02, 2008
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Plain Diff
merge fix for 38629 from 5.0
parents
de175698
73aced2f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+10
-1
No files found.
mysql-test/mysql-test-run.pl
View file @
753eff2a
...
@@ -3601,8 +3601,17 @@ sub run_testcase ($) {
...
@@ -3601,8 +3601,17 @@ sub run_testcase ($) {
{
{
mtr_timer_stop_all
(
$glob_timers
);
mtr_timer_stop_all
(
$glob_timers
);
mtr_report
("
\n
Servers started, exiting
");
mtr_report
("
\n
Servers started, exiting
");
if
(
$glob_win32_perl
)
{
#ActiveState perl hangs when using normal exit, use POSIX::_exit instead
use
POSIX
qw[ _exit ]
;
POSIX::
_exit
(
0
);
}
else
{
exit
(
0
);
exit
(
0
);
}
}
}
{
{
do_before_run_mysqltest
(
$tinfo
);
do_before_run_mysqltest
(
$tinfo
);
...
...
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