diff --git a/test/sdp_client/Makefile b/test/sdp_client/Makefile index e605b96c9..59126db8d 100644 --- a/test/sdp_client/Makefile +++ b/test/sdp_client/Makefile @@ -39,7 +39,7 @@ service_search_query: ${COMMON_OBJ} service_search_query.c btstack_linked_list.c ${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@ test: all - ./sdp_rfcomm_query + ASAN_OPTIONS=detect_leaks=0 ./sdp_rfcomm_query ./general_sdp_query ./service_attribute_search_query ./service_search_query diff --git a/test/tlv_posix/Makefile b/test/tlv_posix/Makefile index 2e3e68b02..5d98809cf 100644 --- a/test/tlv_posix/Makefile +++ b/test/tlv_posix/Makefile @@ -43,6 +43,6 @@ test: all @echo Run all test @set -e; \ for test in $(TESTS); do \ - ./$$test; \ + ASAN_OPTIONS=detect_leaks=0 ./$$test; \ done