Commit 61b97db056522404c056a6c35f73c50ca4f4dfb3

Baptiste 2024-07-31T17:36:05

added gdb_http_asan rule to makefile

diff --git a/Makefile b/Makefile
index aa4a13f..f802ab1 100644
--- a/Makefile
+++ b/Makefile
@@ -191,6 +191,16 @@ gdb_httpd:
 	${MAKE} -C httpd debug
 	${MAKE} -C test gdb_httpd
 
+gdb_httpd_asan:
+	${MAKE} -C libtommath asan
+	${MAKE} -C ucd2c
+	${MAKE} -C libkc3 asan
+	${MAKE} -C ikc3 asan
+	${MAKE} -C kc3s asan
+	${MAKE} -C http asan
+	${MAKE} -C httpd asan
+	${MAKE} -C test gdb_httpd_asan
+
 gdb_ikc3:
 	${MAKE} -C libtommath debug
 	${MAKE} -C ucd2c
diff --git a/test/Makefile b/test/Makefile
index 5c2308f..5f9c40b 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -74,6 +74,9 @@ gcovr:
 gdb_httpd:
 	cd httpd && ${GDB} ../../httpd/.libs/kc3_httpd_debug
 
+gdb_httpd_asan:
+	cd httpd && ${GDB} ../../httpd/.libs/kc3_httpd_asan
+
 gdb_test: debug
 	if [ -f libkc3_test_debug.core ]; then ${GDB} .libs/libkc3_test_debug libkc3_test_debug.core; else ${GDB} .libs/libkc3_test_debug; fi