ocarina/tests/test

11 lines
157 B
Bash
Executable File

#!/bin/bash
# Copyright 2014 (c) Anna Schumaker.
cd $(dirname $0)
[ $? == 0 ] && tests=$(ls tests/) || tests="$*"
for t in $tests; do
./run_test $t
done