summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJaakko Hannikainen <jaakko.hannikainen@intel.com>2016-08-22 14:51:46 +0300
committerAnas Nashif <nashif@linux.intel.com>2016-09-30 21:17:39 +0000
commit9167a0305f72b59019bed651f55fb4b0706eb493 (patch)
treea9decf893d5adfe014dbeff29245d9671af2a76f /Makefile
parent5469ff50a11801f2d95e74c1d4ed86d2eebec85e (diff)
tests: Add a generic testing framework
This framework makes testing in most parts a lot easier, since it gives an unified base to work with, removing a lot of unnecessary code from tests. This framework currently features simple assertions and basic mocking support. The framework works both with and without Zephyr running, so it can be used for real unit testing. Origin: Original Change-Id: I8c5bf2e6b8d6656b6197ee91699b61e730c1cfe3 Signed-off-by: Jaakko Hannikainen <jaakko.hannikainen@intel.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0e14b6cad..c63e1e458 100644
--- a/Makefile
+++ b/Makefile
@@ -518,7 +518,7 @@ scripts: scripts_basic include/config/auto.conf include/config/tristate.conf
# arch/ must be last here so that .gnu.linkonce magic for interrupts/exceptions
# works as expected
-core-y := lib/ kernel/ misc/ net/ boards/ ext/ usb/ fs/ arch/
+core-y := lib/ kernel/ misc/ net/ boards/ ext/ usb/ fs/ tests/ arch/
drivers-y := drivers/
ifneq ($(strip $(MAKEFILE_APP_DIR)),)