1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-07-02 15:09:31 +00:00
Purism-Calls/tests/meson.build

118 lines
3.2 KiB
Meson
Raw Normal View History

if get_option('tests')
test_env = [
'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir()),
'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
'G_DEBUG=gc-friendly,fatal-warnings',
'GSETTINGS_BACKEND=memory',
'PYTHONDONTWRITEBYTECODE=yes',
'MALLOC_CHECK_=2',
'NO_AT_BRIDGE=1',
'CALLS_SIP_TEST=1',
'CALLS_AUDIOSRC=audiotestsrc',
'CALLS_AUDIOSINK=fakesink',
]
test_cflags = [
'-DFOR_TESTING',
2020-03-20 17:33:59 +00:00
'-Wno-error=deprecated-declarations',
'-DPLUGIN_BUILDDIR="@0@"'.format(full_calls_plugin_builddir),
]
test_link_args = [
'-fPIC',
]
2018-06-13 13:38:51 +00:00
tests = [
[ 'provider', [] ],
[ 'origin', [ 'provider' ] ],
[ 'call', [ 'provider', 'origin' ] ],
]
2018-06-13 13:38:51 +00:00
foreach test : tests
name = test[0]
2018-06-13 13:38:51 +00:00
setup_bases = test[1]
setup_bases += name
test_sources = []
foreach base : setup_bases
test_sources += [ 'setup-' + base + '.c',
'setup-' + base + '.h' ]
endforeach
2018-06-13 13:38:51 +00:00
test_sources += [ 'test-' + name + '.c',
'common.h' ]
2018-06-13 13:38:51 +00:00
t = executable(name, test_sources,
dummy_sources,
c_args : test_cflags,
2018-06-13 13:38:51 +00:00
link_args: test_link_args,
pie: true,
link_with : [calls_vala, libcalls],
2018-06-13 13:38:51 +00:00
dependencies: calls_deps,
include_directories : [
calls_includes,
dummy_include,
]
2018-06-13 13:38:51 +00:00
)
test(name, t, env: test_env)
endforeach
2020-03-20 17:33:59 +00:00
test_sources = [ 'test-manager.c' ]
t = executable('manager', test_sources,
c_args : test_cflags,
link_args: test_link_args,
pie: true,
link_with : [calls_vala, libcalls],
2020-03-20 17:33:59 +00:00
dependencies: calls_deps,
include_directories : [
calls_includes
]
)
test('manager', t, env: test_env)
2021-03-23 13:20:24 +00:00
test_sources = [ 'test-plugins.c' ]
t = executable('plugins', test_sources,
calls_sources,
2021-03-23 13:20:24 +00:00
c_args : test_cflags,
link_args: test_link_args,
pie: true,
link_with : [calls_vala, libcalls],
2021-03-23 13:20:24 +00:00
dependencies: calls_deps,
include_directories : [
calls_includes
]
)
test('plugins', t, env: test_env)
2020-03-20 17:33:59 +00:00
2021-03-18 19:29:55 +00:00
test_sources = [ 'test-sip.c' ]
t = executable('sip', test_sources,
2021-04-06 08:56:38 +00:00
c_args : test_cflags,
2021-03-18 19:29:55 +00:00
link_args: test_link_args,
pie: true,
link_with : [calls_vala, calls_sip, libcalls],
2021-03-18 19:29:55 +00:00
dependencies: [calls_deps, sip_deps],
include_directories : [
calls_includes,
sip_include,
]
)
test('sip', t, env: test_env)
test_sources = [ 'test-util.c' ]
t = executable('util', test_sources,
c_args : test_cflags,
link_args: test_link_args,
pie: true,
link_with : [calls_vala, libcalls],
dependencies: calls_deps,
include_directories : [
calls_includes,
]
)
test('util', t, env: test_env)
endif