Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / envvar-check
1 # -*- sh -*-
2 # Check environment variables for sane values while testing.
3
4 # Copyright (C) 2000, 2001, 2003, 2004, 2006 Free Software Foundation,
5 # Inc.
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 # 02110-1301, USA.
21
22 if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
23   as_unset=unset
24 else
25   as_unset=false
26 fi
27
28 envvar_check_failed=0
29 vars='
30   _POSIX2_VERSION
31   BLOCKSIZE
32   BLOCK_SIZE
33   CDPATH
34   COLUMNS
35   DF_BLOCK_SIZE
36   DU_BLOCK_SIZE
37   LS_BLOCK_SIZE
38   LS_COLORS
39   POSIXLY_CORRECT
40   QUOTING_STYLE
41   SIMPLE_BACKUP_SUFFIX
42   TABSIZE
43   TERM
44   TIME_STYLE
45   TMPDIR
46   VERSION_CONTROL
47 '
48 for var in $vars
49 do
50   $as_unset $var
51   if eval test \"\${$var+set}\" = set; then
52     echo "$0: the $var environment variable is set --" \
53       ' unset it and rerun this test' >&2
54     envvar_check_failed=1
55   fi
56 done
57
58 test "$envvar_check_fail" = 1 && exit 1