summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLukasz Kasprzak <lukas@labunix.xyz>2026-09-14 19:39:32 +0200
committerLukasz Kasprzak <lukas@labunix.xyz>2026-09-14 19:39:32 +0200
commiteab84ab42f51beab5debc03b8049f0929c5e8904 (patch)
tree803e95b9b950f65ff3d1c9b5006d92b9bfb8756d /Makefile
parent5b22b8e3a7d1ae9a3fcc4e894ae2e9d142bf8086 (diff)
downloadkrino-eab84ab42f51beab5debc03b8049f0929c5e8904.tar.gz
krino-eab84ab42f51beab5debc03b8049f0929c5e8904.zip
plan 8: fuzz the log's escaping and round trip
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d103ab5..23e16ed 100644
--- a/Makefile
+++ b/Makefile
@@ -82,7 +82,10 @@ bench: ## run the Go benchmarks on generated trees
# FUZZ_TARGETS lists every fuzz target as package-directory:FuzzName.
FUZZTIME ?= 20s
FUZZ_TARGETS = \
- internal/sexp:FuzzParse
+ internal/sexp:FuzzParse \
+ internal/journal:FuzzEscapeRoundTrip \
+ internal/journal:FuzzParseLine \
+ internal/journal:FuzzEntryRoundTrip
fuzz: ## run every fuzz target for FUZZTIME each (default 20s); a crasher is saved under testdata/fuzz
@for t in $(FUZZ_TARGETS); do \