12 lines
119 B
Bash
Executable file
12 lines
119 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
LIB=-I../lib
|
|
if test "${1:-}" = --installed; then
|
|
LIB=""
|
|
shift
|
|
fi
|
|
|
|
prove --norc $LIB t/*.t
|
|
|