tests: factor 350 fail=0 initializations into test-lib.sh
[platform/upstream/coreutils.git] / tests / ls / file-type
1 #!/bin/sh
2 # contrast ls -F, ls -p, and ls --indicator-style=file-type
3
4 # Copyright (C) 2002, 2005-2009 Free Software Foundation, Inc.
5
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 if test "$VERBOSE" = yes; then
20   set -x
21   ls --version
22 fi
23
24 . $srcdir/test-lib.sh
25
26 mkdir sub
27 cd sub
28 mkdir dir
29 touch regular executable
30 chmod a+x executable
31 ln -s regular slink-reg
32 ln -s dir slink-dir
33 ln -s nowhere slink-dangle
34 mknod block b 20 20 2> /dev/null && block="block
35 "
36 mknod char c 10 10 2> /dev/null && char="char
37 "
38 mkfifo fifo
39 cd ..
40
41
42
43 ls -F sub > out || fail=1
44 cat <<EOF > exp
45 $block${char}dir/
46 executable*
47 fifo|
48 regular
49 slink-dangle@
50 slink-dir@
51 slink-reg@
52 EOF
53
54 sed 's/\*//' exp > exp2
55 ls --indicator-style=file-type sub > out2 || fail=1
56
57 sed 's/[@|]$//' exp2 > exp3
58 ls -p sub > out3 || fail=1
59
60 compare out exp || fail=1
61
62 compare out2 exp2 || fail=1
63
64 compare out3 exp3 || fail=1
65
66 ls --color=auto -F sub > out || fail=1
67 compare out exp || fail=1
68
69 Exit $fail