mirror of
https://github.com/opnsense/src.git
synced 2026-05-19 16:35:42 -04:00
23 lines
325 B
Perl
23 lines
325 B
Perl
|
|
#!/bin/sh
|
||
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
do_test() {
|
||
|
|
number=$1
|
||
|
|
comment=$2
|
||
|
|
opt=$3
|
||
|
|
if ./$executable $opt; then
|
||
|
|
echo "ok $number - $comment"
|
||
|
|
else
|
||
|
|
echo "not ok $number - $comment"
|
||
|
|
fi
|
||
|
|
}
|
||
|
|
|
||
|
|
cd `dirname $0`
|
||
|
|
|
||
|
|
executable=`basename $0 .t`
|
||
|
|
|
||
|
|
make $executable 2>&1 > /dev/null
|
||
|
|
|
||
|
|
echo 1..1
|
||
|
|
do_test 1 'getusershell() snapshot' '-s snapshot_usershell'
|