فهرست منبع

make: look for TEST_COMPONENTS in all component directories

fixes https://github.com/espressif/esp-idf/issues/354
Ivan Grokhotkov 9 سال پیش
والد
کامیت
bf7f0bf52c
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      make/project.mk

+ 1 - 1
make/project.mk

@@ -134,7 +134,7 @@ endif
 
 # If TEST_COMPONENTS is set, create variables for building unit tests
 ifdef TEST_COMPONENTS
-override TEST_COMPONENTS := $(foreach comp,$(TEST_COMPONENTS),$(wildcard $(IDF_PATH)/components/$(comp)/test))
+override TEST_COMPONENTS := $(foreach comp,$(TEST_COMPONENTS),$(firstword $(foreach dir,$(COMPONENT_DIRS),$(wildcard $(dir)/$(comp)/test))))
 TEST_COMPONENT_PATHS := $(TEST_COMPONENTS)
 TEST_COMPONENT_NAMES :=  $(foreach comp,$(TEST_COMPONENTS),$(lastword $(subst /, ,$(dir $(comp))))_test)
 endif