diff options
author | EuAndreh <eu@euandre.org> | 2025-05-27 02:34:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-27 02:34:47 -0300 |
commit | 6071b32e9a6ab214a18c7ef7ffe59c0d6d68e9ca (patch) | |
tree | f186cc8c1ff053128e505e9d99b5a10d7e0198ac | |
parent | meta.capim: Add with :dependencies key (diff) | |
download | scrypt-main.tar.gz scrypt-main.tar.xz |
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -19,6 +19,7 @@ DESTDIR = LDLIBS = --static -lscrypt-kdf GOCFLAGS = -I $(GOLIBDIR) GOLDFLAGS = -L $(GOLIBDIR) +N = `nproc` @@ -176,7 +177,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) |