freebsd-dev/tools/regression/execve/execve.t
2006-05-31 11:13:10 +00:00

28 lines
431 B
Bash

#!/bin/sh
# $FreeBSD$
cd `dirname $0`
cmd="./`basename $0 .t`"
make >/dev/null 2>&1
tests="test-empty test-nonexist test-nonexistshell \
test-devnullscript test-badinterplen test-goodscript \
test-scriptarg test-scriptarg-nospace test-goodaout \
test-truncaout"
n=0
echo "1..10"
for atest in ${tests}
do
n=`expr ${n} + 1`
if make ${atest}
then
echo "ok ${n} - ${atest}"
else
echo "not ok ${n} - ${atest}"
fi
done