Add a unit test app + example tests

This commit is contained in:
jacqueline
2022-11-07 16:38:58 +11:00
parent c29c218b85
commit 6584060296
10 changed files with 86 additions and 32 deletions
+10
View File
@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.16)
include(../common.cmake)
# Treat warnings as errors for test purposes.
list(APPEND EXTRA_WARNINGS "-Werror")
# List all components that include tests here.
set(TEST_COMPONENTS "drivers")
project(device_tests)