tests: fix indentation issues in meson.build

This commit is contained in:
Peter Hutterer 2021-07-07 12:41:51 +10:00 committed by Wim Taymans
parent 731888fcdd
commit 0f5e462909

View file

@ -1,23 +1,23 @@
test_apps = [ test_apps = [
'test-client', 'test-client',
'test-endpoint', 'test-endpoint',
'test-interfaces', 'test-interfaces',
# 'test-remote', # 'test-remote',
'test-stream', 'test-stream',
'test-utils' 'test-utils'
] ]
foreach a : test_apps foreach a : test_apps
test('pw-' + a, test('pw-' + a,
executable('pw-' + a, a + '.c', executable('pw-' + a, a + '.c',
dependencies : [pipewire_dep], dependencies : [pipewire_dep],
install : installed_tests_enabled, install : installed_tests_enabled,
install_dir : installed_tests_execdir), install_dir : installed_tests_execdir),
env : [ env : [
'SPA_PLUGIN_DIR=@0@/spa/plugins/'.format(meson.build_root()), 'SPA_PLUGIN_DIR=@0@/spa/plugins/'.format(meson.build_root()),
'PIPEWIRE_CONFIG_DIR=@0@/src/daemon/'.format(meson.build_root()), 'PIPEWIRE_CONFIG_DIR=@0@/src/daemon/'.format(meson.build_root()),
'PIPEWIRE_MODULE_DIR=@0@/src/modules/'.format(meson.build_root()) 'PIPEWIRE_MODULE_DIR=@0@/src/modules/'.format(meson.build_root())
]) ])
if installed_tests_enabled if installed_tests_enabled
test_conf = configuration_data() test_conf = configuration_data()
@ -33,20 +33,20 @@ endforeach
if have_cpp if have_cpp
test_cpp = executable('pw-test-cpp', 'test-cpp.cpp', test_cpp = executable('pw-test-cpp', 'test-cpp.cpp',
dependencies : [pipewire_dep], dependencies : [pipewire_dep],
install : installed_tests_enabled, install : installed_tests_enabled,
install_dir : installed_tests_execdir) install_dir : installed_tests_execdir)
test('pw-test-cpp', test_cpp) test('pw-test-cpp', test_cpp)
if installed_tests_enabled if installed_tests_enabled
test_conf = configuration_data() test_conf = configuration_data()
test_conf.set('exec', installed_tests_execdir / 'pw-test-cpp') test_conf.set('exec', installed_tests_execdir / 'pw-test-cpp')
configure_file( configure_file(
input: installed_tests_template, input: installed_tests_template,
output: 'pw-test-cpp.test', output: 'pw-test-cpp.test',
install_dir: installed_tests_metadir, install_dir: installed_tests_metadir,
configuration: test_conf configuration: test_conf
) )
endif endif
endif endif