diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-04-15 20:34:48 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-04-15 20:34:48 -0400 |
| commit | d4912358121f84f0a1782c3ae40383dbfaa13818 (patch) | |
| tree | 2e4c66d8a8b5a57f71a6d2ed235f42f4dce2f4bb /Makefile | |
| parent | 4c5dc9443e818d020fcb95144a944c98e7d46055 (diff) | |
Run tests in random order
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ tags: test: tomo rm -f test/*.tm.[cho] - for f in test/*.tm; do echo -e "\x1b[1;4m$$f\x1b[m"; VERBOSE=0 CC=tcc ./tomo "$$f" || break; done + for f in $$(ls test/*.tm | shuf); do echo -e "\x1b[1;4m$$f\x1b[m"; VERBOSE=0 CC=tcc ./tomo "$$f" || break; done clean: rm -f tomo *.o SipHash/halfsiphash.o builtins/*.o libtomo.so |
