From aabbed8e1ea4c68a5aeb3dfd699e0c1959132ad1 Mon Sep 17 00:00:00 2001 From: Zachary Dremann Date: Mon, 7 Aug 2023 13:46:21 -0400 Subject: [PATCH] Add `cargo fuzz check` to `make fuzz`, to ensure all fuzz targets can build --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index d7bc1f6..549f7d8 100644 --- a/Makefile +++ b/Makefile @@ -46,6 +46,7 @@ _get_cargo_fuzz: fuzz: _get_cargo_fuzz cd fuzz && \ + cargo fuzz check && \ ASAN_OPTIONS="detect_leaks=1 detect_stack_use_after_return=1" \ CC=clang CFLAGS=-fsanitize=address \ cargo fuzz run fuzz_ops -s address -- -max_len=10000 -rss_limit_mb=4096