makefile: Report testing arguments at build startup

This commit is contained in:
Mark Pizzolato 2022-03-03 17:41:54 -08:00
parent 92415062b5
commit 7c41688261

View file

@ -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
TESTING_FEATURES = - Per simulator tests will be run ifneq (,${TEST_ARG})
TESTING_FEATURES = - Per simulator tests will be run with argument: ${TEST_ARG}
else
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