diff options
author | EuAndreh <eu@euandre.org> | 2025-05-27 02:30:16 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-27 02:30:16 -0300 |
commit | 8cba50466b837d2f4149ca22d6645f6d6127c63a (patch) | |
tree | d2c4a1956d0b5d543f1d1e37d86e939889bf6171 | |
parent | meta.capim: Add with :dependencies key (diff) | |
download | uuid-8cba50466b837d2f4149ca22d6645f6d6127c63a.tar.gz uuid-8cba50466b837d2f4149ca22d6645f6d6127c63a.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` @@ -137,7 +138,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) |