From f0d30a0f2610be3df7ebfddb423661fa03b16f86 Mon Sep 17 00:00:00 2001 From: yihong Date: Wed, 15 Jan 2025 16:17:23 +0800 Subject: [PATCH] fix: better makefile help show, show fuzz and fuzz-ls also (#5363) Signed-off-by: yihong0618 --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index dd335c370a..f029f78d85 100644 --- a/Makefile +++ b/Makefile @@ -165,15 +165,14 @@ nextest: ## Install nextest tools. sqlness-test: ## Run sqlness test. cargo sqlness ${SQLNESS_OPTS} -# Run fuzz test ${FUZZ_TARGET}. RUNS ?= 1 FUZZ_TARGET ?= fuzz_alter_table .PHONY: fuzz -fuzz: +fuzz: ## Run fuzz test ${FUZZ_TARGET}. cargo fuzz run ${FUZZ_TARGET} --fuzz-dir tests-fuzz -D -s none -- -runs=${RUNS} .PHONY: fuzz-ls -fuzz-ls: +fuzz-ls: ## List all fuzz targets. cargo fuzz list --fuzz-dir tests-fuzz .PHONY: check