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>
11 lines
428 B
Meson
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
|