2022-12-21 15:23:57 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
for i in test/*.fnl; do
|
|
|
|
fennel --correlate $i && echo $i OK
|
|
|
|
done
|
2024-09-10 21:41:28 +00:00
|
|
|
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
|