]>
git.saurik.com Git - apple/shell_cmds.git/blob - test/tests/legacy_test.sh
4 # Copyright (c) June 1996 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
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.
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
29 # TEST.sh - check if test(1) or builtin test works
33 # force a specified test program, e.g. `env test=/bin/test sh regress.sh'
39 # $2 -> $test expression
42 # check for syntax errors
43 syntax
="`eval $test $2 2>&1`"
45 if test -n "$syntax"; then
46 printf "not ok %s - (syntax error)\n" "$count $2"
47 elif [ "$ret" != "$1" ]; then
48 printf "not ok %s - (got $ret, expected $1)\n" "$count $2"
50 printf "ok %s\n" "$count $2"
64 t
1 '! -f /etc/passwd'
76 t
0 '\( -h = -h \) -o 1'
77 t
0 '-h = -h -o -h = -h'
78 t
0 '\( -h = -h \) -o \( -h = -h \)'
79 t
0 'roedelheim = roedelheim'
80 t
1 'potsdam = berlin-dahlem'
95 t
0 '\( \( \( a = a \) -o 1 \) -a 1 \) -a true'
104 t
1 '! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)'
115 t
1 '1 -eq 0 -o a = a -a 1 -eq 0 -o a = aa'
139 t
0 '! -c /etc/passwd'
147 t
0 '\( -f /etc/passwd \)'
151 t
0 '0 -eq 0 -a -d /'
152 t
0 '-s = "" -o "" = ""'
153 t
0 '"" = "" -o -s = ""'
154 t
1 '-s = "" -o -s = ""'
155 t
0 '-z x -o x = "#" -o x = x'
156 t
1 '-z y -o y = "#" -o y = x'
157 t
0 '0 -ne 0 -o ! -f /'
158 t
0 '1 -ne 0 -o ! -f /etc/passwd'
159 t
1 '0 -ne 0 -o ! -f /etc/passwd'