* lib/gdb.exp (gdb_init): Set LC_ALL and LANG to C in the
authorPedro Alves <palves@redhat.com>
Thu, 29 Jul 2010 14:18:57 +0000 (14:18 +0000)
committerPedro Alves <palves@redhat.com>
Thu, 29 Jul 2010 14:18:57 +0000 (14:18 +0000)
environment.

gdb/testsuite/ChangeLog
gdb/testsuite/lib/gdb.exp

index 5739a8e72d4312814d6cedd6c1e065f370ba6079..a3ae15e00aef19a792fd6edf442bec121eea09ce 100644 (file)
@@ -1,3 +1,8 @@
+2010-07-29  Pedro Alves  <pedro@codesourcery.com>
+
+       * lib/gdb.exp (gdb_init): Set LC_ALL and LANG to C in the
+       environment.
+
 2010-07-28  Tom Tromey  <tromey@redhat.com>
 
        PR python/11060:
index 2f57ffb1c6868ed8abe35285b60ce71edfecd645..04e00e2007f98f4cad2b83c52f98ab7790580370 100644 (file)
@@ -2687,6 +2687,11 @@ proc gdb_init { args } {
        set banned_variables_traced 1
     }
 
+    # We set LC_ALL and LANG to C so that we get the same messages as
+    # expected.
+    setenv LC_ALL C
+    setenv LANG C
+
     return [eval default_gdb_init $args];
 }