diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:28:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:28:17 +0000 |
commit | 7a46c07230b8d8108c0e8e80df4522d0ac116538 (patch) | |
tree | d483300dab478b994fe199a5d19d18d74153718a /pipewire-alsa/tests/meson.build | |
parent | Initial commit. (diff) | |
download | pipewire-7a46c07230b8d8108c0e8e80df4522d0ac116538.tar.xz pipewire-7a46c07230b8d8108c0e8e80df4522d0ac116538.zip |
Adding upstream version 0.3.65.upstream/0.3.65upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | pipewire-alsa/tests/meson.build | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pipewire-alsa/tests/meson.build b/pipewire-alsa/tests/meson.build new file mode 100644 index 0000000..f48dfb5 --- /dev/null +++ b/pipewire-alsa/tests/meson.build @@ -0,0 +1,23 @@ +test_apps = [ + [ 'test-pipewire-alsa-stress', [alsa_dep, pthread_lib] ], +] + +foreach a : test_apps + executable('pw-' + a[0], a[0] + '.c', + dependencies : a[1], + include_directories: [includes_inc], + install : installed_tests_enabled, + install_dir : installed_tests_execdir + ) + + if installed_tests_enabled + test_conf = configuration_data() + test_conf.set('exec', installed_tests_execdir / 'pw-' + a[0]) + configure_file( + input: installed_tests_template, + output: 'pw-' + a[0] + '.test', + install_dir: installed_tests_metadir, + configuration: test_conf + ) + endif +endforeach |