ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

commit a09284a2808201d2eb28a83e3a0fd8ab34c43ab2
parent 3827f29c7034c5f50b02d0cd2835ac37b9de1ea7
Author: citbl <citbl@citbl.org>
Date:   Fri, 14 Nov 2025 22:04:31 +1000

minor

Diffstat:
Mmakefile | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/makefile b/makefile @@ -51,6 +51,9 @@ test: clean fast +@find . -maxdepth 1 -name 'ex*.ox' -print0 \ | xargs -0 -r -P$(JOBS) -n1 sh -c 'printf "%s\n" "$$1" 1>&2; exec ./$(BIN) --quiet "$$1" >/dev/null' sh +test-slow: clean fast + +@find . -maxdepth 1 -name 'ex*.ox' -print0 \ + | xargs -0 -r -P1 -n1 sh -c 'printf "%s\n" "$$1" 1>&2; exec ./$(BIN) --quiet "$$1" >/dev/null' sh test-hmap: clean default MallocNanoZone=0 ./oxc --test-hmap