aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-05-27 02:49:58 -0300
committerEuAndreh <eu@euandre.org>2025-05-27 02:49:58 -0300
commit1eec478135876b7f325c507d1284aa5782bad09d (patch)
tree2ae67903272d91b6d6021c9adf96cd5604f51109
parentmeta.capim: Add :dependencies key (diff)
downloadgistatic-1eec478135876b7f325c507d1284aa5782bad09d.tar.gz
gistatic-1eec478135876b7f325c507d1284aa5782bad09d.tar.xz
Makefile: Add switch for picking number of parallel fuzz workersHEADmain
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7bc1dcc..c6323b0 100644
--- a/Makefile
+++ b/Makefile
@@ -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)