From 3f23b72e45ce4e750e5fa9640741f094df3013f7 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 8 Sep 2008 15:47:51 +0000 Subject: [PATCH] Force LC_ALL and LANG to "C", so that the test results are in english and nothing else. --- Scripts/developer_scripts/autotest_cgal | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Scripts/developer_scripts/autotest_cgal b/Scripts/developer_scripts/autotest_cgal index 55af036fdd9..e840f5e3c60 100755 --- a/Scripts/developer_scripts/autotest_cgal +++ b/Scripts/developer_scripts/autotest_cgal @@ -24,6 +24,12 @@ #sets the umask to 022 & 0777 umask 022 +# We want english warning and error messages!! +LANG=C +LC_ALL=C +export LANG +export LC_ALL + SCP="scp" WGET="wget" WGET_OPTS="--no-check-certificate --no-verbose"