diff options
Diffstat (limited to 'justfile')
-rw-r--r-- | justfile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -5,3 +5,7 @@ default: # run tests test: for f in lib/*.test.fnl; do fennel $f | faucet; done + +# build expect scripts +expects: + for f in test/*.dat; do awk -f test/test.awk $f > ${f/dat/expect}; done |