4114a93dff
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 <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
12 lines
299 B
Meson
12 lines
299 B
Meson
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)
|
|
|
|
test('Initialisation test', test_init)
|