diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-12 19:43:57 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-12 19:43:57 +0000 |
commit | e899394fb23ac27aa81b27136052a13e7f2b840d (patch) | |
tree | aa4f122c96b75d9da588cdbe5cd148ebe442e5d8 /gcc/testsuite | |
parent | 9bb06fc7fd7c58cc57cf084b8436cac71b99071f (diff) | |
download | gcc-e899394fb23ac27aa81b27136052a13e7f2b840d.tar.gz |
2004-11-12 Andrew Pinski <pinskia@physics.uc.edu>
PR other/14264
* lib/g++.exp: Set LC_ALL and LANG to C.
* lib/gcc-dg.exp: Likewise.
* lib/gfortran.exp: Likewise.
* lib/objc.exp: Likewise.
* lib/treelang.exp: Likewise.
2004-11-12 Andrew Pinski <pinskia@physics.uc.edu>
PR other/14264
* testsuite/lib/libstdc++.exp: Set LC_ALL and LANG to C.
2004-11-12 Andrew Pinski <pinskia@physics.uc.edu>
PR other/14264
* testsuite/lib/libjava.exp: Set LC_ALL and LANG to C.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90539 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite')
-rw-r--r-- | gcc/testsuite/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/testsuite/lib/g++.exp | 4 | ||||
-rw-r--r-- | gcc/testsuite/lib/gcc-dg.exp | 4 | ||||
-rw-r--r-- | gcc/testsuite/lib/gfortran.exp | 4 | ||||
-rw-r--r-- | gcc/testsuite/lib/objc.exp | 4 | ||||
-rw-r--r-- | gcc/testsuite/lib/treelang.exp | 6 |
6 files changed, 31 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7ac76f7fdcd..853cd4a6a48 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,12 @@ +2004-11-12 Andrew Pinski <pinskia@physics.uc.edu> + + PR other/14264 + * lib/g++.exp: Set LC_ALL and LANG to C. + * lib/gcc-dg.exp: Likewise. + * lib/gfortran.exp: Likewise. + * lib/objc.exp: Likewise. + * lib/treelang.exp: Likewise. + 2004-11-12 Andreas Schwab <schwab@suse.de> * gcc.dg/pr16286.c: Fix last change. diff --git a/gcc/testsuite/lib/g++.exp b/gcc/testsuite/lib/g++.exp index 22fb5d7608c..d591238f139 100644 --- a/gcc/testsuite/lib/g++.exp +++ b/gcc/testsuite/lib/g++.exp @@ -218,6 +218,10 @@ proc g++_init { args } { global TESTING_IN_BUILD_TREE global target_triplet + # We set LC_ALL and LANG to C so that we get the same error messages as expected. + setenv LC_ALL C + setenv LANG C + if ![info exists GXX_UNDER_TEST] then { if [info exists TOOL_EXECUTABLE] { set GXX_UNDER_TEST $TOOL_EXECUTABLE; diff --git a/gcc/testsuite/lib/gcc-dg.exp b/gcc/testsuite/lib/gcc-dg.exp index 1bb5bd06b26..848526b32b9 100644 --- a/gcc/testsuite/lib/gcc-dg.exp +++ b/gcc/testsuite/lib/gcc-dg.exp @@ -22,6 +22,10 @@ load_lib scantree.exp load_lib prune.exp load_lib libgloss.exp +# We set LC_ALL and LANG to C so that we get the same error messages as expected. +setenv LC_ALL C +setenv LANG C + if ![info exists TORTURE_OPTIONS] { # It is theoretically beneficial to group all of the O2/O3 options together, # as in many cases the compiler will generate identical executables for diff --git a/gcc/testsuite/lib/gfortran.exp b/gcc/testsuite/lib/gfortran.exp index 805b61960ce..1207d2b572b 100644 --- a/gcc/testsuite/lib/gfortran.exp +++ b/gcc/testsuite/lib/gfortran.exp @@ -161,6 +161,10 @@ proc gfortran_init { args } { global GFORTRAN_UNDER_TEST global TESTING_IN_BUILD_TREE + # We set LC_ALL and LANG to C so that we get the same error messages as expected. + setenv LC_ALL C + setenv LANG C + if ![info exists GFORTRAN_UNDER_TEST] then { if [info exists TOOL_EXECUTABLE] { set GFORTRAN_UNDER_TEST $TOOL_EXECUTABLE; diff --git a/gcc/testsuite/lib/objc.exp b/gcc/testsuite/lib/objc.exp index e4d10e04cd2..6cba354cfc9 100644 --- a/gcc/testsuite/lib/objc.exp +++ b/gcc/testsuite/lib/objc.exp @@ -94,6 +94,10 @@ proc objc_init { args } { global TOOL_EXECUTABLE global objc_libgcc_s_path + # We set LC_ALL and LANG to C so that we get the same error messages as expected. + setenv LC_ALL C + setenv LANG C + if { $objc_initialized == 1 } { return; } if ![info exists OBJC_UNDER_TEST] then { diff --git a/gcc/testsuite/lib/treelang.exp b/gcc/testsuite/lib/treelang.exp index 57ea992d2f0..6d3777382bf 100644 --- a/gcc/testsuite/lib/treelang.exp +++ b/gcc/testsuite/lib/treelang.exp @@ -91,6 +91,12 @@ proc treelang_init { args } { global TOOL_EXECUTABLE global treelang_libgcc_s_path + + # We set LC_ALL and LANG to C so that we get the same error messages as expected. + setenv LC_ALL C + setenv LANG C + + if { $treelang_initialized == 1 } { return; } if ![info exists TREELANG_UNDER_TEST] then { |