diff --git a/.gitignore b/.gitignore index 8448bf404..df90fbb19 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,5 @@ examples/protocols/aws_iot/*/main/certs/*.pem.* *.gcno coverage.info coverage_report/ + +test_multi_heap_host diff --git a/components/heap/test_multi_heap_host/Makefile b/components/heap/test_multi_heap_host/Makefile index f0d5ab1fc..16fd6439c 100644 --- a/components/heap/test_multi_heap_host/Makefile +++ b/components/heap/test_multi_heap_host/Makefile @@ -1,6 +1,10 @@ TEST_PROGRAM=test_multi_heap all: $(TEST_PROGRAM) +ifneq ($(filter clean,$(MAKECMDGOALS)),) +.NOTPARALLEL: # prevent make clean racing the other targets +endif + SOURCE_FILES = $(abspath \ ../multi_heap.c \ ../multi_heap_poisoning.c \