b8d933f326
Add more regression testing, some of which is expected to fail until we commit more kernel implementation. Approved by: re (kib), mentor (rwatson) Sponsored by: Google Inc
12 lines
180 B
Bash
12 lines
180 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if test -z "${DIR}" ; then DIR=$( make -V .OBJDIR ); fi
|
|
if test -z "${DIR}" ; then DIR=$( dirname $0 ); fi
|
|
|
|
make > /dev/null || exit 1
|
|
$DIR/cap_test $*
|
|
|