From d634b7b1d9131a8e37861b2368be0d026c97a859 Mon Sep 17 00:00:00 2001 From: Francisco Acosta <fco.ja.ac@gmail.com> Date: Mon, 23 Apr 2018 17:07:02 +0200 Subject: [PATCH] tests: add more hardware in the loop tests --- tests/isr_yield_higher/Makefile | 2 ++ tests/libfixmath_unittests/Makefile | 2 ++ tests/pipe/Makefile | 2 ++ tests/pkg_cayenne-lpp/Makefile | 2 ++ tests/posix_semaphore/Makefile | 2 ++ tests/rmutex/Makefile | 2 ++ tests/thread_cooperation/Makefile | 2 ++ tests/thread_exit/Makefile | 2 ++ tests/thread_flags/Makefile | 2 ++ tests/trace/Makefile | 2 ++ tests/xtimer_hang/Makefile | 2 ++ tests/xtimer_usleep/Makefile | 2 ++ 12 files changed, 24 insertions(+) diff --git a/tests/isr_yield_higher/Makefile b/tests/isr_yield_higher/Makefile index 43de5a792f..f5124bb23b 100644 --- a/tests/isr_yield_higher/Makefile +++ b/tests/isr_yield_higher/Makefile @@ -5,6 +5,8 @@ BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 USEMODULE += xtimer +TEST_ON_CI_WHITELIST += all + include $(RIOTBASE)/Makefile.include test: diff --git a/tests/libfixmath_unittests/Makefile b/tests/libfixmath_unittests/Makefile index 294cc2cc48..a555c5f5bc 100644 --- a/tests/libfixmath_unittests/Makefile +++ b/tests/libfixmath_unittests/Makefile @@ -17,6 +17,8 @@ endif USEMODULE += printf_float +TEST_ON_CI_WHITELIST += native + include $(RIOTBASE)/Makefile.include test: diff --git a/tests/pipe/Makefile b/tests/pipe/Makefile index 4d25c6d2f4..7f3d01f2a3 100644 --- a/tests/pipe/Makefile +++ b/tests/pipe/Makefile @@ -6,6 +6,8 @@ BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 USEMODULE += pipe +TEST_ON_CI_WHITELIST += all + include $(RIOTBASE)/Makefile.include test: diff --git a/tests/pkg_cayenne-lpp/Makefile b/tests/pkg_cayenne-lpp/Makefile index 30ed3b63c9..e6d97f790a 100644 --- a/tests/pkg_cayenne-lpp/Makefile +++ b/tests/pkg_cayenne-lpp/Makefile @@ -2,6 +2,8 @@ include ../Makefile.tests_common USEPKG += cayenne-lpp +TEST_ON_CI_WHITELIST += all + include $(RIOTBASE)/Makefile.include test: diff --git a/tests/posix_semaphore/Makefile b/tests/posix_semaphore/Makefile index 0addc28ee7..f83470100e 100644 --- a/tests/posix_semaphore/Makefile +++ b/tests/posix_semaphore/Makefile @@ -10,6 +10,8 @@ USEMODULE += posix_semaphore DISABLE_MODULE += auto_init +TEST_ON_CI_WHITELIST += all + include $(RIOTBASE)/Makefile.include test: diff --git a/tests/rmutex/Makefile b/tests/rmutex/Makefile index 34c26cb179..e8c04d6aa0 100644 --- a/tests/rmutex/Makefile +++ b/tests/rmutex/Makefile @@ -3,6 +3,8 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f030 \ nucleo-l053 stm32f0discovery +TEST_ON_CI_WHITELIST += all + include $(RIOTBASE)/Makefile.include test: diff --git a/tests/thread_cooperation/Makefile b/tests/thread_cooperation/Makefile index 8886ca9ba7..eef3ae25de 100644 --- a/tests/thread_cooperation/Makefile +++ b/tests/thread_cooperation/Makefile @@ -21,6 +21,8 @@ PROBLEM ?= 12 CFLAGS += -DPROBLEM=$(PROBLEM) +TEST_ON_CI_WHITELIST += all + test: ./tests/01-run.py diff --git a/tests/thread_exit/Makefile b/tests/thread_exit/Makefile index 59ff51cb57..4e31de8c5f 100644 --- a/tests/thread_exit/Makefile +++ b/tests/thread_exit/Makefile @@ -4,6 +4,8 @@ BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 DISABLE_MODULE += auto_init +TEST_ON_CI_WHITELIST += all + include $(RIOTBASE)/Makefile.include test: diff --git a/tests/thread_flags/Makefile b/tests/thread_flags/Makefile index 85684c4c00..b7e4554ba0 100644 --- a/tests/thread_flags/Makefile +++ b/tests/thread_flags/Makefile @@ -5,6 +5,8 @@ BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 USEMODULE += core_thread_flags USEMODULE += xtimer +TEST_ON_CI_WHITELIST += all + include $(RIOTBASE)/Makefile.include test: diff --git a/tests/trace/Makefile b/tests/trace/Makefile index fba06069ec..9015e73ecd 100644 --- a/tests/trace/Makefile +++ b/tests/trace/Makefile @@ -6,6 +6,8 @@ USEMODULE += trace BOARD_WHITELIST := native +TEST_ON_CI_WHITELIST += all + include $(RIOTBASE)/Makefile.include test: diff --git a/tests/xtimer_hang/Makefile b/tests/xtimer_hang/Makefile index eb582b097f..7ae78d896d 100644 --- a/tests/xtimer_hang/Makefile +++ b/tests/xtimer_hang/Makefile @@ -4,6 +4,8 @@ BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 USEMODULE += xtimer +TEST_ON_CI_WHITELIST += all + include $(RIOTBASE)/Makefile.include test: diff --git a/tests/xtimer_usleep/Makefile b/tests/xtimer_usleep/Makefile index c148cf4119..124e211853 100644 --- a/tests/xtimer_usleep/Makefile +++ b/tests/xtimer_usleep/Makefile @@ -2,6 +2,8 @@ include ../Makefile.tests_common USEMODULE += xtimer +TEST_ON_CI_WHITELIST += all + include $(RIOTBASE)/Makefile.include test: -- GitLab