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# $OpenBSD: TEST.sh,v 1.2 2014/11/25 23:09:22 daniel Exp $ 30 31# force a specified test program, e.g. `env test=/bin/test sh TEST.sh' 32: ${test=test} 33 34ERROR=0 FAILED=0 35 36t () 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 57error () 58{ 59 echo ""; echo " $syntax" 60 ERROR=`expr $ERROR + 1` 61} 62 63failed () 64{ 65 echo ""; echo " failed" 66 FAILED=`expr $FAILED + 1` 67} 68 69 70t 0 'b = b' 71t 1 'b != b' 72t 0 '\( b = b \)' 73t 1 '! \( b = b \)' 74t 1 '! -f /etc/passwd' 75 76t 0 '-h = -h' 77t 0 '-o = -o' 78t 1 '-f = h' 79t 1 '-h = f' 80t 1 '-o = f' 81t 1 'f = -o' 82t 0 '\( -h = -h \)' 83t 1 '\( a = -h \)' 84t 1 '\( -f = h \)' 85t 0 '-h = -h -o a' 86t 0 '\( -h = -h \) -o 1' 87t 0 '-h = -h -o -h = -h' 88t 0 '\( -h = -h \) -o \( -h = -h \)' 89t 0 'roedelheim = roedelheim' 90t 1 'potsdam = berlin-dahlem' 91 92t 0 '-d /' 93t 0 '-d / -a a != b' 94t 1 '-z "-z"' 95t 0 '-n -n' 96 97t 0 '0' 98t 0 '\( 0 \)' 99t 0 '-E' 100t 0 '-X -a -X' 101t 0 '-XXX' 102t 0 '\( -E \)' 103t 0 'true -o X' 104t 0 'true -o -X' 105t 0 '\( \( \( a = a \) -o 1 \) -a 1 \) -a true' 106t 1 '-h /' 107t 0 '-r /' 108t 1 '-w /bin/sh' 109t 0 '-x /bin/sh' 110t 0 '-c /dev/null' 111t 0 '-b /dev/fd0a -o -b /dev/rfd0a -o true' 112t 0 '-f /etc/passwd' 113t 0 '-s /etc/passwd' 114 115t 1 '! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)' 116t 0 '100 -eq 100' 117t 0 '100 -lt 200' 118t 1 '1000 -lt 200' 119t 0 '1000 -gt 200' 120t 0 '1000 -ge 200' 121t 0 '1000 -ge 1000' 122t 1 '2 -ne 2' 123t 0 '0 -eq 0' 124t 1 '-5 -eq 5' 125t 0 '\( 0 -eq 0 \)' 126t 1 '1 -eq 0 -o a = a -a 1 -eq 0 -o a = aa' 127 128t 1 '"" -o ""' 129t 1 '"" -a ""' 130t 1 '"a" -a ""' 131t 0 '"a" -a ! ""' 132t 1 '""' 133t 0 '! ""' 134 135echo "" 136echo "Syntax errors: $ERROR Failed: $FAILED" 137[ $ERROR -gt 0 ] && exit 1 138[ $FAILED -gt 0 ] && exit 1 139exit 0 140