test: disable leak detection for sdp_client/tlv_posix

This commit is contained in:
Matthias Ringwald 2020-08-24 17:37:33 +02:00
parent b084b67c92
commit 30b78f4b1a
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ service_search_query: ${COMMON_OBJ} service_search_query.c btstack_linked_list.c
${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@ ${CC} $^ ${CFLAGS} ${LDFLAGS} -o $@
test: all test: all
./sdp_rfcomm_query ASAN_OPTIONS=detect_leaks=0 ./sdp_rfcomm_query
./general_sdp_query ./general_sdp_query
./service_attribute_search_query ./service_attribute_search_query
./service_search_query ./service_search_query

View File

@ -43,6 +43,6 @@ test: all
@echo Run all test @echo Run all test
@set -e; \ @set -e; \
for test in $(TESTS); do \ for test in $(TESTS); do \
./$$test; \ ASAN_OPTIONS=detect_leaks=0 ./$$test; \
done done