From c48ae9cf4dbbcd4154f6642f18a73c871024cccb Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 18 Nov 2019 22:02:13 +0100 Subject: [PATCH] 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 --- selftest/selftest.pl | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.47.2