freebsd-nq/tools/regression/acct/regress.t

35 lines
356 B
Perl
Raw Normal View History

#!/bin/sh
#
# $FreeBSD$
#
DIR=`dirname $0`
check()
{
NUM=$1
shift
if $DIR/pack $*
then
echo "ok $NUM"
else
echo "not ok $NUM"
fi
}
2010-01-04 09:57:00 +00:00
(cd $DIR ; make pack) >/dev/null 2>&1
echo 1..7
check 1 0 0
check 2 0 1
check 3 1 0
check 4 1 999999
check 5 1 1000000
check 6 2147483647 999999
check 7 10000000
2010-01-04 09:57:00 +00:00
(cd $DIR ; make clean) >/dev/null 2>&1
exit 0