mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
tests: remove redundant board and quiet statements
This commit is contained in:
parent
f84e8a37e2
commit
52fadaf23a
@ -1,8 +1,6 @@
|
||||
APPLICATION = conn_ip
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD ?= native
|
||||
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f334 stm32f0discovery telosb \
|
||||
@ -19,8 +17,6 @@ USEMODULE += shell
|
||||
USEMODULE += shell_commands
|
||||
USEMODULE += ps
|
||||
|
||||
QUIET ?= 1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
test:
|
||||
|
@ -2,9 +2,6 @@
|
||||
APPLICATION = cpp11_condition_variable
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# If no BOARD is found in the environment, use this default:
|
||||
BOARD ?= native
|
||||
|
||||
# ROM is overflowing for these boards when using
|
||||
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
|
||||
# (Travis is using this PPA currently, 2015-06-23)
|
||||
@ -21,9 +18,6 @@ RIOTBASE ?= $(CURDIR)/../..
|
||||
# development process:
|
||||
CFLAGS += -DDEVELHELP
|
||||
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
QUIET ?= 1
|
||||
|
||||
# If you want to add some extra flags when compile c++ files, add these flags
|
||||
# to CXXEXFLAGS variable
|
||||
CXXEXFLAGS += -std=c++11
|
||||
|
@ -2,9 +2,6 @@
|
||||
APPLICATION = cpp11_mutex
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# If no BOARD is found in the environment, use this default:
|
||||
BOARD ?= native
|
||||
|
||||
# ROM is overflowing for these boards when using
|
||||
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
|
||||
# (Travis is using this PPA currently, 2015-06-23)
|
||||
@ -21,9 +18,6 @@ RIOTBASE ?= $(CURDIR)/../..
|
||||
# development process:
|
||||
CFLAGS += -DDEVELHELP
|
||||
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
QUIET ?= 1
|
||||
|
||||
# If you want to add some extra flags when compile c++ files, add these flags
|
||||
# to CXXEXFLAGS variable
|
||||
CXXEXFLAGS += -std=c++11
|
||||
|
@ -2,9 +2,6 @@
|
||||
APPLICATION = cpp11_thread
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# If no BOARD is found in the environment, use this default:
|
||||
BOARD ?= native
|
||||
|
||||
# ROM is overflowing for these boards when using
|
||||
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
|
||||
# (Travis is using this PPA currently, 2015-06-23)
|
||||
@ -21,9 +18,6 @@ RIOTBASE ?= $(CURDIR)/../..
|
||||
# development process:
|
||||
CFLAGS += -DDEVELHELP
|
||||
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
QUIET ?= 1
|
||||
|
||||
# If you want to add some extra flags when compile c++ files, add these flags
|
||||
# to CXXEXFLAGS variable
|
||||
CXXEXFLAGS += -std=c++11
|
||||
|
@ -36,6 +36,4 @@ DRIVER ?= at86rf231
|
||||
# include the selected driver
|
||||
USEMODULE += $(DRIVER)
|
||||
|
||||
QUIET ?= 1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -2,15 +2,9 @@
|
||||
APPLICATION = fault_handler
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# If no BOARD is found in the environment, use this default:
|
||||
BOARD ?= native
|
||||
|
||||
# This has to be the absolute path to the RIOT base directory:
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
QUIET ?= 1
|
||||
|
||||
CFLAGS += -DDEVELHELP=1
|
||||
|
||||
ifeq ($(shell uname),Darwin)
|
||||
|
@ -2,9 +2,6 @@
|
||||
APPLICATION = gnrc_ipv6_ext
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# If no BOARD is found in the environment, use this default:
|
||||
BOARD ?= native
|
||||
|
||||
# This has to be the absolute path to the RIOT base directory:
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
@ -33,9 +30,6 @@ USEMODULE += ps
|
||||
# development process:
|
||||
CFLAGS += -DDEVELHELP
|
||||
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
QUIET ?= 1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
# This requires ENABLE_DEBUG in gnrc_ipv6.c to be 1
|
||||
|
@ -2,9 +2,6 @@
|
||||
APPLICATION = gnrc_sixlowpan
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# If no BOARD is found in the environment, use this default:
|
||||
BOARD ?= native
|
||||
|
||||
# This has to be the absolute path to the RIOT base directory:
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
@ -29,9 +26,6 @@ USEMODULE += gnrc_pktdump
|
||||
# development process:
|
||||
CFLAGS += -DDEVELHELP
|
||||
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
QUIET ?= 1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
test:
|
||||
|
@ -1,8 +1,6 @@
|
||||
APPLICATION = gnrc_sock_ip
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD ?= native
|
||||
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
USEMODULE += gnrc_sock_ip
|
||||
@ -13,8 +11,6 @@ CFLAGS += -DDEVELHELP
|
||||
CFLAGS += -DGNRC_PKTBUF_SIZE=200
|
||||
CFLAGS += -DTEST_SUITES
|
||||
|
||||
QUIET ?= 1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
test:
|
||||
|
@ -1,8 +1,6 @@
|
||||
APPLICATION = gnrc_sock_udp
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD ?= native
|
||||
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo32-f042
|
||||
@ -16,8 +14,6 @@ CFLAGS += -DDEVELHELP
|
||||
CFLAGS += -DGNRC_PKTBUF_SIZE=400
|
||||
CFLAGS += -DTEST_SUITES
|
||||
|
||||
QUIET ?= 1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
test:
|
||||
|
@ -44,8 +44,6 @@ endif
|
||||
|
||||
USEMODULE += $(DRIVER)
|
||||
|
||||
QUIET ?= 1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
test:
|
||||
|
@ -2,9 +2,6 @@
|
||||
APPLICATION = malloc
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# If no BOARD is found in the environment, use this default:
|
||||
BOARD ?= native
|
||||
|
||||
# This has to be the absolute path to the RIOT base directory:
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
@ -13,7 +10,4 @@ RIOTBASE ?= $(CURDIR)/../..
|
||||
# development process:
|
||||
CFLAGS += -DDEVELHELP
|
||||
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
QUIET ?= 1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -2,9 +2,6 @@
|
||||
APPLICATION = minimal
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# If no BOARD is found in the environment, use this default:
|
||||
BOARD ?= native
|
||||
|
||||
# This has to be the absolute path to the RIOT base directory:
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
@ -14,7 +11,4 @@ CFLAGS += -DNDEBUG -DLOG_LEVEL=LOG_NONE
|
||||
#
|
||||
DISABLE_MODULE += auto_init
|
||||
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
QUIET ?= 1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -2,9 +2,6 @@
|
||||
APPLICATION = od
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# If no BOARD is found in the environment, use this default:
|
||||
BOARD ?= native
|
||||
|
||||
# This has to be the absolute path to the RIOT base directory:
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
@ -15,9 +12,6 @@ USEMODULE += od
|
||||
# development process:
|
||||
CFLAGS += -DDEVELHELP
|
||||
|
||||
# Change this to 0 show compiler invocation lines by default:
|
||||
QUIET ?= 1
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
test:
|
||||
|
@ -1,4 +1,4 @@
|
||||
export APPLICATION = periph_rtc
|
||||
APPLICATION = periph_rtc
|
||||
include ../Makefile.tests_common
|
||||
|
||||
FEATURES_REQUIRED = periph_rtc
|
||||
|
@ -1,7 +1,6 @@
|
||||
APPLICATION = xtimer_sleep_until
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD ?= native
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos
|
||||
|
@ -1,7 +1,6 @@
|
||||
APPLICATION = xtimer_remove
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD ?= native
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
USEMODULE += xtimer
|
||||
|
@ -1,7 +1,6 @@
|
||||
APPLICATION = xtimer_reset
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD ?= native
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
USEMODULE += xtimer
|
||||
|
@ -14,7 +14,6 @@ USEMODULE += gnrc_pktdump
|
||||
USEMODULE += shell
|
||||
USEMODULE += shell_commands
|
||||
|
||||
|
||||
# set optional default values for ZEP parameters if unset
|
||||
ZEP_DST ?= "\"::1\""
|
||||
ZEP_SRC_PORT ?= GNRC_ZEP_DEFAULT_PORT
|
||||
|
Loading…
Reference in New Issue
Block a user