aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-09-07 18:24:08 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2021-09-07 18:24:08 +0200
commitbcff3a7b5ab3302ea03a471bae195f8454008a20 (patch)
tree1c52b80e677f8e011d91a715235f43e3fe1647f3
parent64aa86b720641cb50be9636e6c20d4dbbea6fed0 (diff)
downloadbusybox-w32-bcff3a7b5ab3302ea03a471bae195f8454008a20.tar.gz
busybox-w32-bcff3a7b5ab3302ea03a471bae195f8454008a20.tar.bz2
busybox-w32-bcff3a7b5ab3302ea03a471bae195f8454008a20.zip
shell/ash_test/run-all: unset locale/language variables
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-xshell/ash_test/run-all11
1 files changed, 10 insertions, 1 deletions
diff --git a/shell/ash_test/run-all b/shell/ash_test/run-all
index b9f5ee788..96703ef12 100755
--- a/shell/ash_test/run-all
+++ b/shell/ash_test/run-all
@@ -1,5 +1,14 @@
1#!/bin/sh 1#!/bin/sh
2 2
3unset LANG LANGUAGE
4unset LC_COLLATE
5unset LC_CTYPE
6unset LC_MONETARY
7unset LC_MESSAGES
8unset LC_NUMERIC
9unset LC_TIME
10unset LC_ALL
11
3TOPDIR=`pwd` 12TOPDIR=`pwd`
4 13
5if test ! -x ash; then 14if test ! -x ash; then
@@ -66,7 +75,7 @@ do_test()
66 diff -u "$name.xx" "$name.right" >"$TOPDIR/$noslash-$x.fail" \ 75 diff -u "$name.xx" "$name.right" >"$TOPDIR/$noslash-$x.fail" \
67 && rm -f "$name.xx" "$TOPDIR/$noslash-$x.fail" 76 && rm -f "$name.xx" "$TOPDIR/$noslash-$x.fail"
68 } && echo " ok" || echo " fail" 77 } && echo " ok" || echo " fail"
69 done 78 done
70 ) 79 )
71} 80}
72 81