diff options
author | Jim Meyering <jim@meyering.net> | 1998-08-16 22:04:19 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-08-16 22:04:19 +0000 |
commit | eb771bb8706e787ed7da4b227cee58f7d48bfe8d (patch) | |
tree | 2481e337c1fb0123789259c45815fb58ff800ed9 /tests/ls-2 | |
parent | 43589db61584a30d3fbe45fb6784fe35e84da86a (diff) | |
download | coreutils-eb771bb8706e787ed7da4b227cee58f7d48bfe8d.tar.xz |
*** empty log message ***
Diffstat (limited to 'tests/ls-2')
-rwxr-xr-x | tests/ls-2/quoting | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/ls-2/quoting b/tests/ls-2/quoting index 89557a1c8..cba514c84 100755 --- a/tests/ls-2/quoting +++ b/tests/ls-2/quoting @@ -4,10 +4,8 @@ use strict; (my $program_name = $0) =~ s|.*/||; -# Make sure the tools use the expected locale. -$ENV{LANGUAGE} = 'C'; -$ENV{LC_ALL} = 'C'; -$ENV{LANG} = 'C'; +# Turn off localisation of executable's ouput. +@ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3; my $q_bell = {IN => {"q\a" => ''}}; my @Tests = |