1996-06-19 00:44:44 +00:00
|
|
|
#!/bin/sh
|
2005-01-10 08:39:26 +00:00
|
|
|
|
|
|
|
#-
|
1996-08-27 20:04:45 +00:00
|
|
|
# Copyright (c) June 1996 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
|
2015-10-18 05:51:44 +00:00
|
|
|
# All rights reserved.
|
1996-08-27 20:04:45 +00:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
2005-01-10 08:39:26 +00:00
|
|
|
|
1996-06-19 00:44:44 +00:00
|
|
|
#
|
|
|
|
# TEST.sh - check if test(1) or builtin test works
|
|
|
|
#
|
1999-08-27 23:15:48 +00:00
|
|
|
# $FreeBSD$
|
1996-06-19 00:44:44 +00:00
|
|
|
|
2010-11-08 23:15:10 +00:00
|
|
|
# force a specified test program, e.g. `env test=/bin/test sh regress.sh'
|
2015-10-18 05:51:44 +00:00
|
|
|
: ${test=test}
|
1996-06-19 00:44:44 +00:00
|
|
|
|
|
|
|
t ()
|
|
|
|
{
|
|
|
|
# $1 -> exit code
|
|
|
|
# $2 -> $test expression
|
|
|
|
|
2010-11-08 23:15:10 +00:00
|
|
|
count=$((count+1))
|
1996-06-19 00:44:44 +00:00
|
|
|
# check for syntax errors
|
|
|
|
syntax="`eval $test $2 2>&1`"
|
2010-11-08 23:15:10 +00:00
|
|
|
ret=$?
|
|
|
|
if test -n "$syntax"; then
|
|
|
|
printf "not ok %s - (syntax error)\n" "$count $2"
|
|
|
|
elif [ "$ret" != "$1" ]; then
|
|
|
|
printf "not ok %s - (got $ret, expected $1)\n" "$count $2"
|
1996-06-19 00:44:44 +00:00
|
|
|
else
|
2010-11-08 23:15:10 +00:00
|
|
|
printf "ok %s\n" "$count $2"
|
1996-06-19 00:44:44 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2010-11-08 23:15:10 +00:00
|
|
|
count=0
|
2013-05-31 22:54:20 +00:00
|
|
|
echo "1..130"
|
1996-06-19 00:44:44 +00:00
|
|
|
|
2015-10-18 05:51:44 +00:00
|
|
|
t 0 'b = b'
|
|
|
|
t 0 'b == b'
|
|
|
|
t 1 'b != b'
|
|
|
|
t 0 '\( b = b \)'
|
|
|
|
t 0 '\( b == b \)'
|
|
|
|
t 1 '! \( b = b \)'
|
|
|
|
t 1 '! \( b == b \)'
|
1996-06-19 00:44:44 +00:00
|
|
|
t 1 '! -f /etc/passwd'
|
|
|
|
|
|
|
|
t 0 '-h = -h'
|
|
|
|
t 0 '-o = -o'
|
|
|
|
t 1 '-f = h'
|
|
|
|
t 1 '-h = f'
|
|
|
|
t 1 '-o = f'
|
|
|
|
t 1 'f = -o'
|
|
|
|
t 0 '\( -h = -h \)'
|
|
|
|
t 1 '\( a = -h \)'
|
|
|
|
t 1 '\( -f = h \)'
|
|
|
|
t 0 '-h = -h -o a'
|
|
|
|
t 0 '\( -h = -h \) -o 1'
|
|
|
|
t 0 '-h = -h -o -h = -h'
|
|
|
|
t 0 '\( -h = -h \) -o \( -h = -h \)'
|
1996-12-28 13:31:29 +00:00
|
|
|
t 0 'roedelheim = roedelheim'
|
|
|
|
t 1 'potsdam = berlin-dahlem'
|
1996-06-19 00:44:44 +00:00
|
|
|
|
|
|
|
t 0 '-d /'
|
|
|
|
t 0 '-d / -a a != b'
|
|
|
|
t 1 '-z "-z"'
|
|
|
|
t 0 '-n -n'
|
|
|
|
|
|
|
|
t 0 '0'
|
|
|
|
t 0 '\( 0 \)'
|
|
|
|
t 0 '-E'
|
|
|
|
t 0 '-X -a -X'
|
|
|
|
t 0 '-XXX'
|
|
|
|
t 0 '\( -E \)'
|
|
|
|
t 0 'true -o X'
|
|
|
|
t 0 'true -o -X'
|
|
|
|
t 0 '\( \( \( a = a \) -o 1 \) -a 1 \) -a true'
|
|
|
|
t 1 '-h /'
|
|
|
|
t 0 '-r /'
|
|
|
|
t 1 '-w /'
|
|
|
|
t 0 '-x /bin/sh'
|
|
|
|
t 0 '-c /dev/null'
|
|
|
|
t 0 '-f /etc/passwd'
|
|
|
|
t 0 '-s /etc/passwd'
|
1996-12-28 13:31:29 +00:00
|
|
|
|
1996-06-19 00:44:44 +00:00
|
|
|
t 1 '! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)'
|
|
|
|
t 0 '100 -eq 100'
|
|
|
|
t 0 '100 -lt 200'
|
|
|
|
t 1 '1000 -lt 200'
|
|
|
|
t 0 '1000 -gt 200'
|
|
|
|
t 0 '1000 -ge 200'
|
|
|
|
t 0 '1000 -ge 1000'
|
|
|
|
t 1 '2 -ne 2'
|
1996-12-28 13:31:29 +00:00
|
|
|
t 0 '0 -eq 0'
|
|
|
|
t 1 '-5 -eq 5'
|
|
|
|
t 0 '\( 0 -eq 0 \)'
|
|
|
|
t 1 '1 -eq 0 -o a = a -a 1 -eq 0 -o a = aa'
|
|
|
|
|
|
|
|
t 1 '"" -o ""'
|
|
|
|
t 1 '"" -a ""'
|
|
|
|
t 1 '"a" -a ""'
|
|
|
|
t 0 '"a" -a ! ""'
|
|
|
|
t 1 '""'
|
|
|
|
t 0 '! ""'
|
1996-06-19 00:44:44 +00:00
|
|
|
|
2009-05-26 22:33:10 +00:00
|
|
|
t 0 '!'
|
|
|
|
t 0 '\('
|
|
|
|
t 0 '\)'
|
|
|
|
|
|
|
|
t 1 '\( = \)'
|
|
|
|
t 0 '\( != \)'
|
|
|
|
t 0 '\( ! \)'
|
|
|
|
t 0 '\( \( \)'
|
|
|
|
t 0 '\( \) \)'
|
|
|
|
t 0 '! = !'
|
|
|
|
t 1 '! != !'
|
|
|
|
t 1 '-n = \)'
|
|
|
|
t 0 '! != \)'
|
|
|
|
t 1 '! = a'
|
|
|
|
t 0 '! != -n'
|
|
|
|
t 0 '! -c /etc/passwd'
|
|
|
|
|
|
|
|
t 1 '! = = ='
|
|
|
|
t 0 '! = = \)'
|
|
|
|
t 0 '! "" -o ""'
|
|
|
|
t 1 '! "x" -o ""'
|
|
|
|
t 1 '! "" -o "x"'
|
|
|
|
t 1 '! "x" -o "x"'
|
|
|
|
t 0 '\( -f /etc/passwd \)'
|
|
|
|
t 0 '\( ! "" \)'
|
|
|
|
t 1 '\( ! -e \)'
|
|
|
|
|
|
|
|
t 0 '0 -eq 0 -a -d /'
|
|
|
|
t 0 '-s = "" -o "" = ""'
|
|
|
|
t 0 '"" = "" -o -s = ""'
|
|
|
|
t 1 '-s = "" -o -s = ""'
|
|
|
|
t 0 '-z x -o x = "#" -o x = x'
|
|
|
|
t 1 '-z y -o y = "#" -o y = x'
|
|
|
|
t 0 '0 -ne 0 -o ! -f /'
|
|
|
|
t 0 '1 -ne 0 -o ! -f /etc/passwd'
|
|
|
|
t 1 '0 -ne 0 -o ! -f /etc/passwd'
|
2011-11-28 23:10:53 +00:00
|
|
|
|
|
|
|
t 0 '-n ='
|
|
|
|
t 1 '-z ='
|
|
|
|
t 1 '! ='
|
|
|
|
t 0 '-n -eq'
|
|
|
|
t 1 '-z -eq'
|
|
|
|
t 1 '! -eq'
|
|
|
|
t 0 '-n -a'
|
|
|
|
t 1 '-z -a'
|
|
|
|
t 1 '! -a'
|
|
|
|
t 0 '-n -o'
|
|
|
|
t 1 '-z -o'
|
|
|
|
t 1 '! -o'
|
|
|
|
t 1 '! -n ='
|
|
|
|
t 0 '! -z ='
|
|
|
|
t 0 '! ! ='
|
|
|
|
t 1 '! -n -eq'
|
|
|
|
t 0 '! -z -eq'
|
|
|
|
t 0 '! ! -eq'
|
|
|
|
t 1 '! -n -a'
|
|
|
|
t 0 '! -z -a'
|
|
|
|
t 0 '! ! -a'
|
|
|
|
t 1 '! -n -o'
|
|
|
|
t 0 '! -z -o'
|
|
|
|
t 0 '! ! -o'
|
|
|
|
t 0 '\( -n = \)'
|
|
|
|
t 1 '\( -z = \)'
|
|
|
|
t 1 '\( ! = \)'
|
|
|
|
t 0 '\( -n -eq \)'
|
|
|
|
t 1 '\( -z -eq \)'
|
|
|
|
t 1 '\( ! -eq \)'
|
|
|
|
t 0 '\( -n -a \)'
|
|
|
|
t 1 '\( -z -a \)'
|
|
|
|
t 1 '\( ! -a \)'
|
|
|
|
t 0 '\( -n -o \)'
|
|
|
|
t 1 '\( -z -o \)'
|
|
|
|
t 1 '\( ! -o \)'
|