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