makefile: Report testing arguments at build startup
This commit is contained in:
parent
92415062b5
commit
7c41688261
1 changed files with 5 additions and 1 deletions
4
makefile
4
makefile
|
@ -186,7 +186,11 @@ find_include = $(abspath $(strip $(firstword $(foreach dir,$(strip ${INCPATH}),$
|
||||||
ifneq (3,${SIM_MAJOR})
|
ifneq (3,${SIM_MAJOR})
|
||||||
ifneq (0,$(TESTS))
|
ifneq (0,$(TESTS))
|
||||||
find_test = RegisterSanityCheck $(abspath $(wildcard $(1)/tests/$(2)_test.ini)) </dev/null
|
find_test = RegisterSanityCheck $(abspath $(wildcard $(1)/tests/$(2)_test.ini)) </dev/null
|
||||||
|
ifneq (,${TEST_ARG})
|
||||||
|
TESTING_FEATURES = - Per simulator tests will be run with argument: ${TEST_ARG}
|
||||||
|
else
|
||||||
TESTING_FEATURES = - Per simulator tests will be run
|
TESTING_FEATURES = - Per simulator tests will be run
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
TESTING_FEATURES = - Per simulator tests will be skipped
|
TESTING_FEATURES = - Per simulator tests will be skipped
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue