mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
538 B
Makefile
18 lines
538 B
Makefile
APPLICATION ?= tests_$(notdir $(patsubst %/,%,$(CURDIR)))
|
|
|
|
ifneq (,$(wildcard $(CURDIR)/tests*/.))
|
|
# add interactive test configuration when testing Kconfig
|
|
DEFAULT_MODULE += test_utils_interactive_sync
|
|
# add stack metric printing configuration when testing Kconfig
|
|
DEFAULT_MODULE += test_utils_print_stack_usage
|
|
endif
|
|
|
|
# terminate native when the test is complete
|
|
CFLAGS += -DNATIVE_AUTO_EXIT=1
|
|
|
|
BOARD ?= native
|
|
RIOTBASE ?= $(CURDIR)/../..
|
|
QUIET ?= 1
|
|
# DEVELHELP enabled by default for all tests, set 0 to disable
|
|
DEVELHELP ?= 1
|