List:Commits« Previous MessageNext Message »
From:msvensson Date:November 6 2007 10:17am
Subject:bk commit into 5.0 tree (msvensson:1.2583)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-11-06 11:17:26+01:00, msvensson@stripped +1 -0
  Compare $_ against $proc to properly detect crash 

  mysql-test/mysql-test-run.pl@stripped, 2007-11-06 11:17:24+01:00, msvensson@stripped +2 -2
    Compare $_ against $proc to properly detect crash 

diff -Nrup a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl
--- a/mysql-test/mysql-test-run.pl	2007-11-06 09:08:52 +01:00
+++ b/mysql-test/mysql-test-run.pl	2007-11-06 11:17:24 +01:00
@@ -3128,7 +3128,7 @@ sub run_testcase ($) {
   # ----------------------------------------------------
   # Check if it was a server that died
   # ----------------------------------------------------
-  if ( grep($proc eq $_->{proc}, started(all_servers())) )
+  if ( grep($proc eq $_, started(all_servers())) )
   {
     # Server failed, probably crashed
     $tinfo->{comment}=
@@ -3851,7 +3851,7 @@ sub all_servers {
 # for only those that are started
 #
 sub started {
-  return grep(defined, map($_->{proc}, @_));
+  return grep(defined $_, map($_->{proc}, @_));
 }
 
 
Thread
bk commit into 5.0 tree (msvensson:1.2583)msvensson6 Nov