aboutsummaryrefslogtreecommitdiff
path: root/bin/vest
blob: f857d8c1321dfcb65edcbfa450fbe52a2099c315 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
# Run a test(1) command and print a string to stdout showing pass/fail
if [ "$#" -eq 0 ] ; then
    printf >&2 'vest: Need test(1) arguments\n'
    exit 2
fi
vex test "$@"