From: Angus Gratton Date: Mon, 21 May 2018 23:46:15 +0000 (+1000) Subject: test_multi_heap_host: Remove race conditions from parallel "make clean test" X-Git-Tag: v3.1-beta1~98^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3fe862dacb7fa38f874a8f054f97f24d71eb0e5c;p=esp-idf test_multi_heap_host: Remove race conditions from parallel "make clean test" --- diff --git a/components/heap/test_multi_heap_host/Makefile b/components/heap/test_multi_heap_host/Makefile index f0d5ab1fc1..16fd6439c5 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 \