From b5611ea57167423481a73bebeadba0518cf3f1e9 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Mon, 21 Jul 2014 22:20:57 +0200 Subject: Use "C" locale when running test suite Some of our tests check locale-dependent plugin output, so let's make sure "make test" is always using the "C" locale. diff --git a/test.pl.in b/test.pl.in index 01a97ec..2f2c44f 100755 --- a/test.pl.in +++ b/test.pl.in @@ -9,6 +9,8 @@ use Getopt::Long; use NPTest qw(DetermineTestHarnessDirectory TestsFrom); +$ENV{LC_ALL} = 'C'; + my @tstdir; if ( ! GetOptions( "testdir:s" => \@tstdir ) ) -- cgit v0.10-9-g596f