diff options
author | EuAndreh <eu@euandre.org> | 2025-05-26 21:43:39 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-26 21:43:39 -0300 |
commit | 25af4baaab8db74ba809c863e93dd56e6ffb23ed (patch) | |
tree | 016f3f036e27cc230828d959b5fe293dc5b1c130 | |
parent | meta.capim: Add with :dependencies key (diff) | |
download | gotext-25af4baaab8db74ba809c863e93dd56e6ffb23ed.tar.gz gotext-25af4baaab8db74ba809c863e93dd56e6ffb23ed.tar.xz |
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -19,6 +19,7 @@ DESTDIR = LDLIBS = --static GOCFLAGS = -I $(GOLIBDIR) GOLDFLAGS = -L $(GOLIBDIR) +N = `nproc` @@ -185,7 +186,7 @@ check: check-unit check-integration FUZZSEC=1 fuzz/main.bin-check = $(fuzz/main.go:.go=.bin-check) $(fuzz/main.bin-check): - $(EXEC)$*.bin --test.fuzztime=$(FUZZSEC)s \ + $(EXEC)$*.bin --test.fuzztime=$(FUZZSEC)s --test.parallel=$N \ --test.fuzz='.*' --test.fuzzcachedir=tests/fuzz/corpus fuzz: $(fuzz/main.bin-check) |