]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - bin/test/TEST.sh
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / bin / test / TEST.sh
1 #!/bin/sh
2
3 #-
4 # Copyright (c) June 1996 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
5 # All rights reserved. 
6 #
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
9 # are met:
10 # 1. Redistributions of source code must retain the above copyright
11 #    notice, this list of conditions and the following disclaimer.
12 # 2. Redistributions in binary form must reproduce the above copyright
13 #    notice, this list of conditions and the following disclaimer in the
14 #    documentation and/or other materials provided with the distribution.
15 #
16 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 # SUCH DAMAGE.
27
28 #
29 # TEST.sh - check if test(1) or builtin test works
30 #
31 # $FreeBSD$
32
33 # force a specified test program, e.g. `env test=/bin/test sh TEST.sh'
34 : ${test=test}          
35
36 ERROR=0 FAILED=0
37
38 t ()
39 {
40         # $1 -> exit code
41         # $2 -> $test expression
42
43         echo -n "$1: $test $2 "
44
45         # check for syntax errors
46         syntax="`eval $test $2 2>&1`"
47         if test -z "$syntax"; then
48
49         case $1 in
50                 0) if eval $test $2; then echo " OK"; else failed;fi;;
51                 1) if eval $test $2; then failed; else echo " OK";fi;;
52         esac
53
54         else
55                 error
56         fi
57 }
58
59 error () 
60 {
61         echo ""; echo " $syntax"
62         ERROR=`expr $ERROR + 1`
63 }
64
65 failed () 
66 {
67         echo ""; echo " failed"
68         FAILED=`expr $FAILED + 1`
69 }
70
71
72 t 0 'b = b' 
73 t 1 'b != b' 
74 t 0 '\( b = b \)' 
75 t 1 '! \( b = b \)' 
76 t 1 '! -f /etc/passwd'
77
78 t 0 '-h = -h'
79 t 0 '-o = -o'
80 t 1 '-f = h'
81 t 1 '-h = f'
82 t 1 '-o = f'
83 t 1 'f = -o'
84 t 0 '\( -h = -h \)'
85 t 1 '\( a = -h \)'
86 t 1 '\( -f = h \)'
87 t 0 '-h = -h -o a'
88 t 0 '\( -h = -h \) -o 1'
89 t 0 '-h = -h -o -h = -h'
90 t 0 '\( -h = -h \) -o \( -h = -h \)'
91 t 0 'roedelheim = roedelheim'
92 t 1 'potsdam = berlin-dahlem'
93
94 t 0 '-d /'
95 t 0 '-d / -a a != b'
96 t 1 '-z "-z"'
97 t 0 '-n -n'
98
99 t 0 '0'
100 t 0 '\( 0 \)'
101 t 0 '-E'
102 t 0 '-X -a -X'
103 t 0 '-XXX'
104 t 0 '\( -E \)'
105 t 0 'true -o X'
106 t 0 'true -o -X'
107 t 0 '\( \( \( a = a \) -o 1 \) -a 1 \) -a true'
108 t 1 '-h /'
109 t 0 '-r /'
110 t 1 '-w /'
111 t 0 '-x /bin/sh'
112 t 0 '-c /dev/null'
113 t 0 '-f /etc/passwd'
114 t 0 '-s /etc/passwd'
115
116 t 1 '! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)'
117 t 0 '100 -eq 100'
118 t 0 '100 -lt 200'
119 t 1 '1000 -lt 200'
120 t 0 '1000 -gt 200'
121 t 0 '1000 -ge 200'
122 t 0 '1000 -ge 1000'
123 t 1 '2 -ne 2'
124 t 0 '0 -eq 0'
125 t 1 '-5 -eq 5'
126 t 0 '\( 0 -eq 0 \)'
127 t 1 '1 -eq 0 -o a = a -a 1 -eq 0 -o a = aa'
128
129 t 1 '"" -o ""'
130 t 1 '"" -a ""'
131 t 1 '"a" -a ""'
132 t 0 '"a" -a ! ""'
133 t 1 '""'
134 t 0 '! ""'
135
136 t 0 '!'
137 t 0 '\('
138 t 0 '\)'
139
140 t 1 '\( = \)'
141 t 0 '\( != \)'
142 t 0 '\( ! \)'
143 t 0 '\( \( \)'
144 t 0 '\( \) \)'
145 t 0 '! = !'
146 t 1 '! != !'
147 t 1 '-n = \)'
148 t 0 '! != \)'
149 t 1 '! = a'
150 t 0 '! != -n'
151 t 0 '! -c /etc/passwd'
152
153 t 0 '! \( = \)'
154 t 1 '! \( != \)'
155 t 1 '! = = ='
156 t 0 '! = = \)'
157 t 0 '! "" -o ""'
158 t 1 '! "x" -o ""'
159 t 1 '! "" -o "x"'
160 t 1 '! "x" -o "x"'
161 t 0 '\( -f /etc/passwd \)'
162 t 1 '\( ! = \)'
163 t 0 '\( ! "" \)'
164 t 1 '\( ! -e \)'
165
166 t 0 '0 -eq 0 -a -d /'
167 t 0 '-s = "" -o "" = ""'
168 t 0 '"" = "" -o -s = ""'
169 t 1 '-s = "" -o -s = ""'
170 t 0 '-z x -o x = "#" -o x = x'
171 t 1 '-z y -o y = "#" -o y = x'
172 t 0 '0 -ne 0 -o ! -f /'
173 t 0 '1 -ne 0 -o ! -f /etc/passwd'
174 t 1 '0 -ne 0 -o ! -f /etc/passwd'
175
176 echo ""
177 echo "Syntax errors: $ERROR Failed: $FAILED"