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

Merge pull request #6444 from smlng/pr/tests/add_makefile_tests_common

tests: add missing include for Makefile.tests_common
This commit is contained in:
Martine Lenders 2017-01-20 20:36:30 +01:00 committed by GitHub
commit ace053fbf2
26 changed files with 23 additions and 85 deletions

View File

@ -1,6 +1,5 @@
APPLICATION = conn_ip
BOARD ?= native
include ../Makefile.tests_common
RIOTBASE ?= $(CURDIR)/../..
@ -18,8 +17,6 @@ USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += ps
QUIET ?= 1
include $(RIOTBASE)/Makefile.include
test:

View File

@ -1,8 +1,6 @@
# name of your application
APPLICATION = cpp11_condition_variable
# If no BOARD is found in the environment, use this default:
BOARD ?= native
include ../Makefile.tests_common
# ROM is overflowing for these boards when using
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
@ -20,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

View File

@ -1,8 +1,6 @@
# name of your application
APPLICATION = cpp11_mutex
# If no BOARD is found in the environment, use this default:
BOARD ?= native
include ../Makefile.tests_common
# ROM is overflowing for these boards when using
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
@ -20,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

View File

@ -1,8 +1,6 @@
# name of your application
APPLICATION = cpp11_thread
# If no BOARD is found in the environment, use this default:
BOARD ?= native
include ../Makefile.tests_common
# ROM is overflowing for these boards when using
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
@ -20,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

View File

@ -1,9 +1,10 @@
APPLICATION = emb6
# overwrite board, do not set native as default
BOARD ?= samr21-xpro
include ../Makefile.tests_common
FEATURES_REQUIRED = periph_gpio periph_spi # for at86rf231
BOARD ?= samr21-xpro
RIOTBASE ?= $(CURDIR)/../..
BOARD_INSUFFICIENT_MEMORY := msb-430h stm32f0discovery telosb weio z1
@ -35,6 +36,4 @@ DRIVER ?= at86rf231
# include the selected driver
USEMODULE += $(DRIVER)
QUIET ?= 1
include $(RIOTBASE)/Makefile.include

View File

@ -1,15 +1,10 @@
# name of your application
APPLICATION = fault_handler
# If no BOARD is found in the environment, use this default:
BOARD ?= native
include ../Makefile.tests_common
# 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)

View File

@ -1,8 +1,6 @@
# name of your application
APPLICATION = gnrc_ipv6_ext
# If no BOARD is found in the environment, use this default:
BOARD ?= native
include ../Makefile.tests_common
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..
@ -32,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

View File

@ -1,8 +1,6 @@
# name of your application
APPLICATION = gnrc_sixlowpan
# If no BOARD is found in the environment, use this default:
BOARD ?= native
include ../Makefile.tests_common
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..
@ -28,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:

View File

@ -1,6 +1,5 @@
APPLICATION = gnrc_sock_ip
BOARD ?= native
include ../Makefile.tests_common
RIOTBASE ?= $(CURDIR)/../..
@ -12,8 +11,6 @@ CFLAGS += -DDEVELHELP
CFLAGS += -DGNRC_PKTBUF_SIZE=200
CFLAGS += -DTEST_SUITES
QUIET ?= 1
include $(RIOTBASE)/Makefile.include
test:

View File

@ -1,6 +1,5 @@
APPLICATION = gnrc_sock_udp
BOARD ?= native
include ../Makefile.tests_common
RIOTBASE ?= $(CURDIR)/../..
@ -15,8 +14,6 @@ CFLAGS += -DDEVELHELP
CFLAGS += -DGNRC_PKTBUF_SIZE=400
CFLAGS += -DTEST_SUITES
QUIET ?= 1
include $(RIOTBASE)/Makefile.include
test:

View File

@ -1,6 +1,7 @@
APPLICATION = lwip
# overwrite board, do not set native as default
BOARD ?= iotlab-m3
include ../Makefile.tests_common
RIOTBASE ?= $(CURDIR)/../..
@ -43,8 +44,6 @@ endif
USEMODULE += $(DRIVER)
QUIET ?= 1
include $(RIOTBASE)/Makefile.include
test:

View File

@ -1,5 +1,4 @@
APPLICATION = lwip_sock_ip
include ../Makefile.tests_common
# lwIP's memory management doesn't seem to work on non 32-bit platforms at the

View File

@ -1,8 +1,6 @@
# name of your application
APPLICATION = malloc
# If no BOARD is found in the environment, use this default:
BOARD ?= native
include ../Makefile.tests_common
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..
@ -12,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

View File

@ -1,8 +1,6 @@
# name of your application
APPLICATION = minimal
# If no BOARD is found in the environment, use this default:
BOARD ?= native
include ../Makefile.tests_common
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..
@ -13,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

View File

@ -1,6 +1,5 @@
# name of your application
APPLICATION = msg_send_receive
include ../Makefile.tests_common
include $(RIOTBASE)/Makefile.include

View File

@ -1,8 +1,6 @@
# name of your application
APPLICATION = od
# If no BOARD is found in the environment, use this default:
BOARD ?= native
include ../Makefile.tests_common
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..
@ -14,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:

View File

@ -1,4 +1,4 @@
export APPLICATION = periph_pwm
APPLICATION = periph_pwm
include ../Makefile.tests_common
FEATURES_REQUIRED = periph_pwm

View File

@ -1,4 +1,4 @@
export APPLICATION = periph_rtc
APPLICATION = periph_rtc
include ../Makefile.tests_common
FEATURES_REQUIRED = periph_rtc

View File

@ -1,4 +1,4 @@
export APPLICATION = periph_rtt
APPLICATION = periph_rtt
include ../Makefile.tests_common
FEATURES_REQUIRED = periph_rtt

View File

@ -1,4 +1,4 @@
export APPLICATION = periph_spi
APPLICATION = periph_spi
include ../Makefile.tests_common
FEATURES_REQUIRED = periph_spi

View File

@ -1,4 +1,4 @@
export APPLICATION = periph_timer
APPLICATION = periph_timer
include ../Makefile.tests_common
FEATURES_REQUIRED = periph_timer

View File

@ -1,4 +1,4 @@
export APPLICATION = periph_uart
APPLICATION = periph_uart
include ../Makefile.tests_common
FEATURES_REQUIRED = periph_uart

View File

@ -1,7 +1,6 @@
APPLICATION = xtimer_sleep_until
include ../Makefile.tests_common
BOARD ?= native
RIOTBASE ?= $(CURDIR)/../..
BOARD_INSUFFICIENT_MEMORY := chronos

View File

@ -1,7 +1,6 @@
APPLICATION = xtimer_remove
include ../Makefile.tests_common
BOARD ?= native
RIOTBASE ?= $(CURDIR)/../..
USEMODULE += xtimer

View File

@ -1,7 +1,6 @@
APPLICATION = xtimer_reset
include ../Makefile.tests_common
BOARD ?= native
RIOTBASE ?= $(CURDIR)/../..
USEMODULE += xtimer

View File

@ -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