1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/cpu/native_backtrace/Makefile

15 lines
505 B
Makefile
Raw Normal View History

include ../Makefile.cpu_common
2017-06-16 13:32:53 +02:00
USEMODULE += backtrace
2017-06-16 13:32:53 +02:00
BOARD_WHITELIST := native native64
2017-06-16 13:32:53 +02:00
# Tests if native returns a backtrace of size three.
# The following function should be included in the backtrace:
# `main`/`main_trampoline`/ return to a user context function (e.g. `makecontext`)
# Depending on the implementation of the ucontext functions, the backtrace size
# may be longer, but this test only checks if it is at least three.
CFLAGS += -DBACKTRACE_SIZE=3
2017-06-16 13:32:53 +02:00
include $(RIOTBASE)/Makefile.include