From 4eb008bb17f37f6dacfb101fe0a686bc10114b9d Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Sat, 30 Sep 2023 14:51:34 +0100 Subject: Remove unused nxt_vector_t API This is unused, yet a community member just spent time finding and fixing a bug in it only to be told it's unused. Just get rid of the thing. Link: Reviewed-by: Zhidao Hong Signed-off-by: Andrew Clayton --- auto/sources | 1 - 1 file changed, 1 deletion(-) (limited to 'auto/sources') diff --git a/auto/sources b/auto/sources index 6ee4d87b..f34d7fd7 100644 --- a/auto/sources +++ b/auto/sources @@ -41,7 +41,6 @@ NXT_LIB_SRCS=" \ src/nxt_murmur_hash.c \ src/nxt_lvlhsh.c \ src/nxt_array.c \ - src/nxt_vector.c \ src/nxt_list.c \ src/nxt_buf.c \ src/nxt_buf_pool.c \ -- cgit From 965fc94e4910da14d13a2f10d997cc720b3f6127 Mon Sep 17 00:00:00 2001 From: Arjun Date: Sat, 25 May 2024 17:52:02 +0530 Subject: fuzzing: add fuzzing infrastructure in build system Signed-off-by: Arjun Reviewed-by: Andrew Clayton Signed-off-by: Andrew Clayton --- auto/sources | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'auto/sources') diff --git a/auto/sources b/auto/sources index f34d7fd7..dfabf7cf 100644 --- a/auto/sources +++ b/auto/sources @@ -307,6 +307,15 @@ if [ $NXT_TESTS = YES ]; then fi +NXT_FUZZ_SRCS=" \ + fuzzing/nxt_basic_fuzz.c \ + fuzzing/nxt_http_controller_fuzz.c \ + fuzzing/nxt_http_h1p_fuzz.c \ + fuzzing/nxt_http_h1p_peer_fuzz.c \ + fuzzing/nxt_json_fuzz.c \ +" + + NXT_SRCS=" \ src/nxt_main.c \ " -- cgit