From 4114a93dff6f497e8c5fc4c2328fc2a774d9ef15 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Wed, 19 Dec 2018 11:37:23 +0200 Subject: tests: Add a base Test class MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The base Test class is meant to provide infrastructure common to all tests. It is very limited for now, and should be extended with at least logging and assertion handling. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- test/meson.build | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/meson.build') diff --git a/test/meson.build b/test/meson.build index 924a26f1..da0aea96 100644 --- a/test/meson.build +++ b/test/meson.build @@ -1,3 +1,9 @@ +libtest_sources = files([ + 'test.cpp', +]) + +libtest = static_library('libtest', libtest_sources) + test_init = executable('test_init', 'init.cpp', link_with : libcamera, include_directories : libcamera_includes) -- cgit v1.2.1