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:
Gaëtan Harter 2019-01-16 18:24:13 +01:00
parent 61452669b9
commit 5260b62160
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -16,13 +16,13 @@ endef
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`
all: build-system-utils-tests
build-system-utils-tests: $(TESTS)
.PHONY: build-system-utils-tests $(TESTS)
build-system-utils-tests: $(COMPILE_TESTS)
.PHONY: build-system-utils-tests $(COMPILE_TESTS)
# tests for 'ensure_value'