Commit 753eff2a authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

merge fix for 38629 from 5.0

parents de175698 73aced2f
...@@ -3601,7 +3601,16 @@ sub run_testcase ($) { ...@@ -3601,7 +3601,16 @@ sub run_testcase ($) {
{ {
mtr_timer_stop_all($glob_timers); mtr_timer_stop_all($glob_timers);
mtr_report("\nServers started, exiting"); mtr_report("\nServers started, exiting");
exit(0); 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);
}
} }
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment