dunlin/test/run.sh

10 lines
240 B
Bash
Raw Normal View History

#!/usr/bin/env sh
for i in test/*.fnl; do
fennel --correlate $i && echo $i OK
done
for i in *.fnl; do
grep -q NO-TESTING "$i" && continue
[ "$i" = "macros.fnl" ] && continue
fennel test/test-helper.fnl $i && echo $i OK
done