List:Commits« Previous MessageNext Message »
From:bar Date:May 23 2007 2:32pm
Subject:bk commit into 5.0 tree (bar:1.2439) BUG#27636
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of bar. When bar 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-05-23 17:32:40+05:00, bar@stripped +1 -0
  Bug#27636 mysqlbinlog-cp932 and ctype_cp932 tests fails if LC_* variables set to
*_*.UTF-8
  
  As MySQL character set tests can print results in many character sets
  (latin1, utf8-8, sjis, cp932 and others) - its output can be incompatible
  with the current locale settings, which makes PERL confuse.
  
  Fix: reset LC_ALL and LC_CTYPE to "C", which is compatible with
  any character set.

  mysql-test/mysql-test-run.pl@stripped, 2007-05-23 17:32:39+05:00, bar@stripped +12 -0
    Ignore current locale settings, because "mysqltest" output
    can be not compatible with the locale.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	bar
# Host:	bar.myoffice.izhnet.ru
# Root:	/home/bar/mysql-5.0.b27636

--- 1.213/mysql-test/mysql-test-run.pl	2007-04-02 13:50:16 +05:00
+++ 1.214/mysql-test/mysql-test-run.pl	2007-05-23 17:32:39 +05:00
@@ -1792,6 +1792,18 @@
   $ENV{'CHARSETSDIR'}=              $path_charsetsdir;
   $ENV{'UMASK'}=              "0660"; # The octal *string*
   $ENV{'UMASK_DIR'}=          "0770"; # The octal *string*
+  
+  #
+  # MySQL tests can produce output in various character sets
+  # (especially, ctype_xxx.test). To avoid confusing Perl
+  # with output which is incompatible with the current locale
+  # settings, we reset the current values of LC_ALL and LC_CTYPE to "C".
+  # For details, please see
+  # Bug#27636 tests fails if LC_* variables set to *_*.UTF-8
+  #
+  $ENV{'LC_ALL'}=             "C";
+  $ENV{'LC_CTYPE'}=           "C";
+  
   $ENV{'LC_COLLATE'}=         "C";
   $ENV{'USE_RUNNING_SERVER'}= $opt_extern;
   $ENV{'MYSQL_TEST_DIR'}=     $glob_mysql_test_dir;
Thread
bk commit into 5.0 tree (bar:1.2439) BUG#27636bar23 May