libcamera/test/serialization/meson.build
Jacopo Mondi c0b437fd6c test: Add control serialization test
Add a test that exercises the ControlSerializer to serialize and
deserialize ControlInfoMap and ControlList.

Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2019-11-20 21:47:54 +02:00

11 lines
428 B
Meson

serialization_tests = [
[ 'control_serialization', 'control_serialization.cpp' ],
]
foreach t : serialization_tests
exe = executable(t[0], [t[1], 'serialization_test.cpp'],
dependencies : libcamera_dep,
link_with : test_libraries,
include_directories : test_includes_internal)
test(t[0], exe, suite : 'serialization', is_parallel : true)
endforeach