tests/build_system_utils: fix TESTS name collision
TESTS is used to find the tests files for the application but was used to list test targets. Rename to COMPILE_TESTS as already done in some of my other applications.
This commit is contained in:
parent
61452669b9
commit
5260b62160
@ -16,13 +16,13 @@ endef
|
|||||||
|
|
||||||
MAKEFILES_UTILS = $(RIOTMAKE)/utils
|
MAKEFILES_UTILS = $(RIOTMAKE)/utils
|
||||||
|
|
||||||
TESTS = test-ensure_value test-ensure_value-negative
|
COMPILE_TESTS = test-ensure_value test-ensure_value-negative
|
||||||
|
|
||||||
# Tests will be run both in the host machine and in `docker`
|
# Tests will be run both in the host machine and in `docker`
|
||||||
all: build-system-utils-tests
|
all: build-system-utils-tests
|
||||||
|
|
||||||
build-system-utils-tests: $(TESTS)
|
build-system-utils-tests: $(COMPILE_TESTS)
|
||||||
.PHONY: build-system-utils-tests $(TESTS)
|
.PHONY: build-system-utils-tests $(COMPILE_TESTS)
|
||||||
|
|
||||||
|
|
||||||
# tests for 'ensure_value'
|
# tests for 'ensure_value'
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user