]> granicus.if.org Git - esp-idf/commit
Merge branch 'bugfix/make_test_components' into 'master'
authorIvan Grokhotkov <ivan@espressif.com>
Tue, 14 Mar 2017 07:16:51 +0000 (15:16 +0800)
committerIvan Grokhotkov <ivan@espressif.com>
Tue, 14 Mar 2017 07:16:51 +0000 (15:16 +0800)
commita9ed6d5a24191d0567b4cef79a8a02043cbe716b
tree1306a57baca5a959ae8dc41032eb00f41eceded2
parent10f6f234ff7cc2a88aa237d167d3df3320480b2c
parent61c33ca24ebcc6308a92728f06c326ff5dea26bc
Merge branch 'bugfix/make_test_components' into 'master'

make: don’t override TEST_COMPONENTS

When idf_monitor is launched from make, it gets modified `TEST_COMPONENTS`
variable which contains full paths to the test components instead of the
names. This causes `TEST_COMPONENT_PATHS` to be empty and the unit test
app gets built without any test components.

This change introduces an internal `TEST_COMPONENTS_LIST` variable which
gets set either from `COMPONENTS` if `TESTS_ALL` is 1, or from
`TEST_COMOPONENTS` otherwise.
Bootloader makefile is also fixed to avoid propagating `TESTS_ALL` to the
bootloader build step.

See merge request !569