From: Stefan Metzmacher Date: Mon, 18 Nov 2019 21:02:13 +0000 (+0100) Subject: selftest: force LC_ALL=en_US.utf8 LANG=en_US.utf8 X-Git-Tag: ldb-2.1.1~161 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c48ae9cf4dbbcd4154f6642f18a73c871024cccb;p=thirdparty%2Fsamba.git selftest: force LC_ALL=en_US.utf8 LANG=en_US.utf8 That makes sure we have the same as on gitlab runners (see bootstrap/config.py). Signed-off-by: Stefan Metzmacher Reviewed-by: Andreas Schneider --- diff --git a/selftest/selftest.pl b/selftest/selftest.pl index 087fcefc502..ded3dc402df 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -298,7 +298,9 @@ unless (defined($ENV{VALGRIND})) { $ENV{PYTHONUNBUFFERED} = 1; # do not depend on the users setup +# see also bootstrap/config.py $ENV{TZ} = "UTC"; +$ENV{LC_ALL} = $ENV{LANG} = "en_US.utf8"; my $bindir_abs = abs_path($bindir);