From 1292d96feb909d611143dad60d41fa71ff96eeec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Wed, 12 Jun 2019 15:18:06 +0200 Subject: [PATCH] makefiles/murdock.inc.mk: change policy to run tests by default By default if a test is available and not blacklisted it will be run by murdock. This will move from a whitelisting everything that works, to blacklisting what fails. This way, failing tests will be easier to track instead of being silently just not run. It could even allow introducing failing tests before a fix is available. --- makefiles/murdock.inc.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefiles/murdock.inc.mk b/makefiles/murdock.inc.mk index ceb7460734..778657b3ef 100644 --- a/makefiles/murdock.inc.mk +++ b/makefiles/murdock.inc.mk @@ -25,7 +25,7 @@ test-murdock: # # Testing is enabled if all the following conditions are met: # -# * the board is whitelisted +# * the board is whitelisted (by default all are enabled) # * the board is not blacklisted (by default none) # * the board has enough memory and the executable is being linked # * a test is present @@ -37,7 +37,7 @@ test-murdock: # # Disabling a test in some case must be justified to keep track of the reason. -TEST_ON_CI_WHITELIST ?= +TEST_ON_CI_WHITELIST ?= all TEST_ON_CI_BLACKLIST ?= TEST_ON_BOARD_ENABLED ?= $(filter-out $(TEST_ON_CI_BLACKLIST:all=%),$(filter $(TEST_ON_CI_WHITELIST:all=%),$(BOARD)))