#!/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