1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests: remove DEVELHELP from per test Makefiles

This commit is contained in:
smlng 2017-11-14 11:03:26 +01:00
parent d15c7559f3
commit 6f67e75f90
33 changed files with 0 additions and 100 deletions

View File

@ -6,8 +6,6 @@ BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f04
nucleo-l053 stm32f0discovery telosb wsn430-v1_3b \
wsn430-v1_4 z1
CFLAGS += -DDEVELHELP
CFLAGS += -DLOG_LEVEL=LOG_ALL
USEMODULE += shell

View File

@ -8,11 +8,6 @@ include ../Makefile.tests_common
# not pull in all C++ locale code whenever exceptions are used.
BOARD_INSUFFICIENT_MEMORY := nucleo-f334 spark-core stm32f0discovery
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
# If you want to add some extra flags when compile c++ files, add these flags
# to CXXEXFLAGS variable
CXXEXFLAGS += -std=c++11

View File

@ -8,11 +8,6 @@ include ../Makefile.tests_common
# not pull in all C++ locale code whenever exceptions are used.
BOARD_INSUFFICIENT_MEMORY := nucleo-f334 spark-core stm32f0discovery
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
# If you want to add some extra flags when compile c++ files, add these flags
# to CXXEXFLAGS variable
CXXEXFLAGS += -std=c++11

View File

@ -8,11 +8,6 @@ include ../Makefile.tests_common
# not pull in all C++ locale code whenever exceptions are used.
BOARD_INSUFFICIENT_MEMORY := nucleo-f334 spark-core stm32f0discovery
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
# If you want to add some extra flags when compile c++ files, add these flags
# to CXXEXFLAGS variable
CXXEXFLAGS += -std=c++11

View File

@ -6,6 +6,4 @@ USEMODULE += at30tse75x
USEMODULE += shell
USEMODULE += shell_commands
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include

View File

@ -29,6 +29,4 @@ DRIVER ?= at86rf231
# include the selected driver
USEMODULE += $(DRIVER)
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include

View File

@ -16,6 +16,4 @@ DRIVER ?= kw2xrf
# finally include the actual chosen driver
USEMODULE += $(DRIVER)
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include

View File

@ -18,6 +18,4 @@ USEMODULE += ${DRIVER}
FEATURES_REQUIRED ?= periph_spi
FEATURES_REQUIRED ?= periph_gpio
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include

View File

@ -15,11 +15,6 @@ USEMODULE += shell_commands
# No need of big buffer for this test
CFLAGS += -DGNRC_PKTBUF_SIZE=512
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
# add current directory to the include path. Putting it in CFLAGS will make
# it go to the beginning, before the standard includes.
# That way xbee_params.h get's included and auto configuration can pick it up.

View File

@ -1,8 +1,6 @@
# name of your application
include ../Makefile.tests_common
CFLAGS += -DDEVELHELP=1
ifeq ($(shell uname),Darwin)
CFLAGS += -Wno-language-extension-token
endif

View File

@ -22,11 +22,6 @@ USEMODULE += gnrc_udp
# Add also the shell, some shell commands
USEMODULE += ps
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include
# The test can check more things with ENABLE_DEBUG set to 1 in gnrc_ipv6.c

View File

@ -10,7 +10,6 @@ USEMODULE += embunit
USEMODULE += netdev_eth
USEMODULE += netdev_test
CFLAGS += -DDEVELHELP
CFLAGS += -DGNRC_NETTYPE_NDP=GNRC_NETTYPE_TEST
CFLAGS += -DGNRC_PKTBUF_SIZE=512
CFLAGS += -DTEST_SUITES

View File

@ -13,7 +13,6 @@ USEMODULE += embunit
USEMODULE += netdev_ieee802154
USEMODULE += netdev_test
CFLAGS += -DDEVELHELP
CFLAGS += -DGNRC_NETTYPE_NDP=GNRC_NETTYPE_TEST
CFLAGS += -DGNRC_PKTBUF_SIZE=512
CFLAGS += -DTEST_SUITES

View File

@ -21,7 +21,6 @@ USEMODULE += netdev_ieee802154
USEMODULE += netdev_test
USEMODULE += od
CFLAGS += -DDEVELHELP
CFLAGS += -DGNRC_NETIF_NUMOF=4
CFLAGS += -DGNRC_NETIF_ADDRS_NUMOF=16
CFLAGS += -DGNRC_NETIF_GROUPS_NUMOF=8

View File

@ -19,11 +19,6 @@ USEMODULE += gnrc_udp
# Dumps packets
USEMODULE += gnrc_pktdump
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include
test:

View File

@ -16,8 +16,6 @@ USEMODULE += shell_commands
USEMODULE += posix
CFLAGS += -DDEVELHELP
LOW_MEMORY_BOARDS := nucleo-f334 msb-430 msb-430h
ifeq ($(BOARD),$(filter $(BOARD),$(LOW_MEMORY_BOARDS)))

View File

@ -6,7 +6,6 @@ USEMODULE += gnrc_sock_ip
USEMODULE += gnrc_ipv6
USEMODULE += ps
CFLAGS += -DDEVELHELP
CFLAGS += -DGNRC_PKTBUF_SIZE=200
CFLAGS += -DTEST_SUITES

View File

@ -7,7 +7,6 @@ USEMODULE += gnrc_sock_udp
USEMODULE += gnrc_ipv6
USEMODULE += ps
CFLAGS += -DDEVELHELP
CFLAGS += -DGNRC_PKTBUF_SIZE=400
CFLAGS += -DTEST_SUITES

View File

@ -22,11 +22,6 @@ CFLAGS += -DTARGET_ADDR=\"$(TCP_TARGET_ADDR)\"
CFLAGS += -DTARGET_PORT=$(TCP_TARGET_PORT)
CFLAGS += -DCYCLES=$(TCP_TEST_CYCLES)
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
#CFLAGS += -DDEVELHELP
# Modules to include
USEMODULE += gnrc_netdev_default
USEMODULE += auto_init_gnrc_netif

View File

@ -25,11 +25,6 @@ CFLAGS += -DLOCAL_ADDR=\"$(TCP_LOCAL_ADDR)\"
CFLAGS += -DLOCAL_PORT=$(TCP_LOCAL_PORT)
CFLAGS += -DCYCLES=$(TCP_TEST_CYCLES)
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
#CFLAGS += -DDEVELHELP
# Modules to include
USEMODULE += gnrc_netdev_default
USEMODULE += auto_init_gnrc_netif

View File

@ -20,8 +20,6 @@ USEMODULE += ps
USEMODULE += netstats_l2
USEMODULE += netstats_ipv6
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include
# Set a custom channel if needed

View File

@ -34,7 +34,6 @@ USEMODULE += ps
DISABLE_MODULE += auto_init
CFLAGS += -DDEVELHELP
CFLAGS += -DSO_REUSE
CFLAGS += -DLWIP_SO_RCVTIMEO

View File

@ -34,7 +34,6 @@ USEMODULE += ps
DISABLE_MODULE += auto_init
CFLAGS += -DDEVELHELP
CFLAGS += -DSO_REUSE
CFLAGS += -DLWIP_SO_RCVTIMEO
CFLAGS += -DLWIP_SOCK_TCP_ACCEPT_TIMEOUT=500

View File

@ -34,7 +34,6 @@ USEMODULE += ps
DISABLE_MODULE += auto_init
CFLAGS += -DDEVELHELP
CFLAGS += -DSO_REUSE
CFLAGS += -DLWIP_SO_RCVTIMEO

View File

@ -12,11 +12,6 @@ BOARD ?= samr21-xpro
# be then accordingly extended.
BOARD_WHITELIST := samr21-xpro
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
# Modules to include:
USEMODULE += shell
USEMODULE += shell_commands

View File

@ -1,8 +1,3 @@
include ../Makefile.tests_common
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include

View File

@ -39,8 +39,6 @@ BOARD_WHITELIST += stm32f3discovery # cortex-m4f
BOARD_WHITELIST += stm32f4discovery # cortex-m4f
BOARD_WHITELIST += udoo # cortex-m3
CFLAGS += -DDEVELHELP
USEMODULE += mpu_stack_guard
include $(RIOTBASE)/Makefile.include

View File

@ -3,11 +3,6 @@ include ../Makefile.tests_common
USEMODULE += od
# USEMODULE += od_string
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include
test:

View File

@ -8,11 +8,6 @@ BOARD_WHITELIST := samr21-xpro iotlab-m3 fox iotlab-a8-m3
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP -Wall
# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1

View File

@ -22,11 +22,6 @@ USEPKG += microcoap
# include this for printing IP addresses
USEMODULE += shell_commands
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
#CFLAGS += -DDEVELHELP
# Use different settings when compiling for one of the following (low-memory)
# boards
LOW_MEMORY_BOARDS := nucleo-f334

View File

@ -5,7 +5,6 @@ BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f030 nucleo-l053 \
stm32f0discovery telosb wsn430-v1_3b \
wsn430-v1_4 z1
CFLAGS += -DDEVELHELP
USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += ps

View File

@ -13,9 +13,4 @@ USEMODULE += gnrc_netdev_default
USEMODULE += shell
USEMODULE += shell_commands
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include

View File

@ -7,9 +7,6 @@ BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove
USEMODULE += ssp
# set DEVELHELP so the board halts after crash
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include
test: