From c430bb29e3d68276f51d44c8f21efa38bdd7347c Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Tue, 25 Oct 2016 16:29:29 -0200 Subject: [PATCH] build: allow to have unit tests in HAL implementations Allow a tests/ directory in the hal implementations. --- wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/wscript b/wscript index 6e8f1671a0..6f166824d2 100644 --- a/wscript +++ b/wscript @@ -295,6 +295,7 @@ def _build_recursion(bld): ] hal_dirs_patterns = [ + 'libraries/%s/tests', 'libraries/%s/*/tests', 'libraries/%s/*/benchmarks', 'libraries/%s/examples/*',