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

Merge pull request #12254 from aabadie/pr/tests/useless_ci_whitelist

tests: remove remaining use of "TEST_ON_CI_WHITELIST += all"
This commit is contained in:
Martine Lenders 2019-09-17 10:47:06 +02:00 committed by GitHub
commit 1a89829cc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 4 deletions

View File

@ -116,6 +116,7 @@ check_deprecated_vars_patterns() {
local pathspec=()
patterns+=(-e 'FEATURES_MCU_GROUP')
patterns+=(-e 'TEST_ON_CI_WHITELIST += all')
# Pathspec with exclude should start by an inclusive pathspec in git 2.7.4
pathspec+=('*')

View File

@ -27,6 +27,4 @@ USEMODULE += crypto
USEMODULE += cipher_modes
CFLAGS += -DCRYPTO_THREEDES
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include

View File

@ -3,8 +3,6 @@ include ../Makefile.tests_common
USEMODULE += shell
TEST_ON_CI_WHITELIST += all
# Disable shell echo and prompt to not have them in the way for testing
CFLAGS += -DSHELL_NO_ECHO=1 -DSHELL_NO_PROMPT=1