Add a Process class to abstract a process, and a ProcessManager singleton to monitor and manage the processes. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12 lines
364 B
Meson
12 lines
364 B
Meson
process_tests = [
|
|
[ 'process_test', 'process_test.cpp' ],
|
|
]
|
|
|
|
foreach t : process_tests
|
|
exe = executable(t[0], t[1],
|
|
dependencies : libcamera_dep,
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_internal)
|
|
|
|
test(t[0], exe, suite : 'process', is_parallel : false)
|
|
endforeach
|