We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d702793 + 7a18922 commit 4ae8980Copy full SHA for 4ae8980
boards/native/Makefile.include
@@ -33,7 +33,7 @@ endif
33
endif
34
35
export DEBUGGER = gdb
36
-export TERMPROG = $(ELF)
+export TERMPROG ?= $(ELF)
37
export FLASHER = true
38
export VALGRIND ?= valgrind
39
export CGANNOTATE ?= cg_annotate
dist/tools/travis-scripts/build_and_test.sh
@@ -71,7 +71,7 @@ then
71
72
if [ "$BUILDTEST_MCU_GROUP" == "x86" ]
73
then
74
- make -C ./tests/unittests all test BOARD=native || exit
+ make -C ./tests/unittests all-debug test BOARD=native TERMPROG='gdb -batch -ex r -ex bt $(ELF)' || exit
75
# TODO:
76
# Reenable once https://github.com/RIOT-OS/RIOT/issues/2300 is
77
# resolved:
0 commit comments