mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2025-12-24 09:40:04 +01:00
49 lines
1.2 KiB
Meson
49 lines
1.2 KiB
Meson
common_deps = [gobject_dep, gio_dep, wp_dep, pipewire_dep]
|
|
common_env = common_test_env
|
|
common_env.set('G_TEST_SRCDIR', meson.current_source_dir())
|
|
common_env.set('G_TEST_BUILDDIR', meson.current_build_dir())
|
|
common_args = [
|
|
'-DG_LOG_USE_STRUCTURED',
|
|
]
|
|
|
|
test(
|
|
'test-reserve-device',
|
|
executable('test-reserve-device', 'reserve-device.c',
|
|
dependencies: common_deps, c_args: common_args),
|
|
env: common_env,
|
|
)
|
|
|
|
test(
|
|
'test-file-monitor',
|
|
executable('test-file-monitor', 'file-monitor.c',
|
|
dependencies: common_deps, c_args: common_args),
|
|
env: common_env,
|
|
)
|
|
|
|
test(
|
|
'test-si-node',
|
|
executable('test-si-node', 'si-node.c',
|
|
dependencies: common_deps, c_args: common_args),
|
|
env: common_env,
|
|
)
|
|
|
|
test(
|
|
'test-si-audio-adapter',
|
|
executable('test-si-audio-adapter', 'si-audio-adapter.c',
|
|
dependencies: common_deps, c_args: common_args),
|
|
env: common_env,
|
|
)
|
|
|
|
test(
|
|
'test-si-audio-endpoint',
|
|
executable('test-si-audio-endpoint', 'si-audio-endpoint.c',
|
|
dependencies: common_deps, c_args: common_args),
|
|
env: common_env,
|
|
)
|
|
|
|
test(
|
|
'test-si-standard-link',
|
|
executable('test-si-standard-link', 'si-standard-link.c',
|
|
dependencies: common_deps, c_args: common_args),
|
|
env: common_env,
|
|
)
|