aboutsummaryrefslogtreecommitdiff
path: root/bin/vest
blob: d80c24d1fc972ca3c3a81c811d6499defa70694d (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
# Run a test(1) command a 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 "$@"