mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'feature/unit_tests_in_app' into 'master'
make: look for TEST_COMPONENTS in all component directories This change allows building unit tests found inside the project components directory. fixes https://github.com/espressif/esp-idf/issues/354 See merge request !537
This commit is contained in:
commit
5951314f5d
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user