List:Commits« Previous MessageNext Message »
From:msvensson Date:November 6 2007 11:16am
Subject:bk commit into 5.0 tree (msvensson:1.2582)
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:16:03+01:00, msvensson@stripped +1 -0
  Quote args containing spaces on windows

  mysql-test/lib/mtr_misc.pl@stripped, 2007-11-06 11:16:02+01:00, msvensson@stripped +4 -0
    Quote args containing spaces on windows

diff -Nrup a/mysql-test/lib/mtr_misc.pl b/mysql-test/lib/mtr_misc.pl
--- a/mysql-test/lib/mtr_misc.pl	2007-10-29 10:38:07 +01:00
+++ b/mysql-test/lib/mtr_misc.pl	2007-11-06 11:16:02 +01:00
@@ -68,6 +68,10 @@ sub mtr_add_arg ($$@) {
   my $format= shift;
   my @fargs = @_;
 
+  # Quote args if args contain space
+  $format= "\"$format\""
+    if ($::glob_win32 and grep(/\s/, @fargs));
+
   push(@$args, sprintf($format, @fargs));
 }
 
Thread
bk commit into 5.0 tree (msvensson:1.2582)msvensson6 Nov