mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
19 lines
528 B
Makefile
19 lines
528 B
Makefile
APPLICATION ?= tests_$(notdir $(patsubst %/,%,$(CURDIR)))
|
|
|
|
ifneq (,$(wildcard $(CURDIR)/tests*/.))
|
|
DEFAULT_MODULE += test_utils_interactive_sync
|
|
# add interactive test configuration when testing Kconfig
|
|
ifeq (1,$(TEST_KCONFIG))
|
|
KCONFIG_ADD_CONFIG += $(RIOTBASE)/tests/test_interactive.config
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(filter tests_driver_%,$(APPLICATION)))
|
|
BOARD ?= samr21-xpro
|
|
endif
|
|
BOARD ?= native
|
|
RIOTBASE ?= $(CURDIR)/../..
|
|
QUIET ?= 1
|
|
# DEVELHELP enabled by default for all tests, set 0 to disable
|
|
DEVELHELP ?= 1
|