List:Commits« Previous MessageNext Message »
From:Vladislav Vaintroub Date:October 2 2008 4:46pm
Subject:bzr push into mysql-6.0-falcon-team branch (vvaintroub:2846)
View as plain text  
 2846 Vladislav Vaintroub	2008-10-02 [merge]
      merge
modified:
  storage/falcon/SerialLogWindow.cpp

=== modified file 'mysql-test/mysql-test-run.pl'
--- a/mysql-test/mysql-test-run.pl	2008-08-25 18:23:18 +0000
+++ b/mysql-test/mysql-test-run.pl	2008-10-02 16:43:44 +0000
@@ -3405,7 +3405,16 @@ sub run_testcase ($) {
   {
     mtr_timer_stop_all($glob_timers);
     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);
+    }
   }
 
   {

Thread
bzr push into mysql-6.0-falcon-team branch (vvaintroub:2846) Vladislav Vaintroub2 Oct