3 # Copyright (c) June 1996 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
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.
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
27 # TEST.sh - check if test(1) or builtin test works
29 # $FreeBSD: src/bin/test/TEST.sh,v 1.6.2.1 2000/07/01 03:13:10 ps Exp $
30 # $DragonFly: src/bin/test/TEST.sh,v 1.2 2003/06/17 04:22:50 dillon Exp $
32 # force a specified test program, e.g. `env test=/bin/test sh TEST.sh'
40 # $2 -> $test expression
42 echo -n "$1: $test $2 "
44 # check for syntax errors
45 syntax
="`eval $test $2 2>&1`"
46 if test -z "$syntax"; then
49 0) if eval $test $2; then echo " OK"; else failed
;fi;;
50 1) if eval $test $2; then failed
; else echo " OK";fi;;
60 echo ""; echo " $syntax"
61 ERROR
=`expr $ERROR + 1`
66 echo ""; echo " failed"
67 FAILED
=`expr $FAILED + 1`
75 t
1 '! -f /etc/passwd'
87 t
0 '\( -h = -h \) -o 1'
88 t
0 '-h = -h -o -h = -h'
89 t
0 '\( -h = -h \) -o \( -h = -h \)'
90 t
0 'roedelheim = roedelheim'
91 t
1 'potsdam = berlin-dahlem'
106 t
0 '\( \( \( a = a \) -o 1 \) -a 1 \) -a true'
115 t
1 '! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)'
126 t
1 '1 -eq 0 -o a = a -a 1 -eq 0 -o a = aa'
136 echo "Syntax errors: $ERROR Failed: $FAILED"