mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-15 08:25:07 +03:00
Test the IPC functions of IPCPipeUnixSocket. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15 lines
410 B
Meson
15 lines
410 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
ipc_tests = [
|
|
['unixsocket_ipc', 'unixsocket_ipc.cpp'],
|
|
['unixsocket', 'unixsocket.cpp'],
|
|
]
|
|
|
|
foreach t : ipc_tests
|
|
exe = executable(t[0], t[1],
|
|
dependencies : libcamera_dep,
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_internal)
|
|
|
|
test(t[0], exe, suite : 'ipc')
|
|
endforeach
|