]>
git.cameronkatri.com Git - apple_cmds.git/blob - shell_cmds/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
35 # force a specified test program, e.g. `env test=/bin/test sh regress.sh'
41 # $2 -> $test expression
44 printf "[BEGIN] test $count\n"
45 # check for syntax errors
46 syntax
="`eval $test $2 2>&1`"
48 if test -n "$syntax"; then
49 printf "not ok %s - (syntax error)\n" "$count $2"
50 printf "[FAIL] test $count\n"
51 elif [ "$ret" != "$1" ]; then
52 printf "not ok %s - (got $ret, expected $1)\n" "$count $2"
53 printf "[FAIL] test $count\n"
55 printf "ok %s\n" "$count $2"
56 printf "[PASS] test $count\n"
62 printf "[TEST] shell_cmds: test\n"
71 t
1 '! -f /etc/passwd'
83 t
0 '\( -h = -h \) -o 1'
84 t
0 '-h = -h -o -h = -h'
85 t
0 '\( -h = -h \) -o \( -h = -h \)'
86 t
0 'roedelheim = roedelheim'
87 t
1 'potsdam = berlin-dahlem'
102 t
0 '\( \( \( a = a \) -o 1 \) -a 1 \) -a true'
111 t
1 '! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)'
122 t
1 '1 -eq 0 -o a = a -a 1 -eq 0 -o a = aa'
146 t
0 '! -c /etc/passwd'
154 t
0 '\( -f /etc/passwd \)'
158 t
0 '0 -eq 0 -a -d /'
159 t
0 '-s = "" -o "" = ""'
160 t
0 '"" = "" -o -s = ""'
161 t
1 '-s = "" -o -s = ""'
162 t
0 '-z x -o x = "#" -o x = x'
163 t
1 '-z y -o y = "#" -o y = x'
164 t
0 '0 -ne 0 -o ! -f /'
165 t
0 '1 -ne 0 -o ! -f /etc/passwd'
166 t
1 '0 -ne 0 -o ! -f /etc/passwd'