test: Add basic SIP provider tests

This commit is contained in:
Evangelos Ribeiro Tzaras
2021-03-18 20:29:55 +01:00
parent 840ffa4653
commit 030313d42e
2 changed files with 80 additions and 0 deletions

View File

@@ -88,4 +88,21 @@ t = executable('plugins', test_sources,
)
test('plugins', t, env: test_env)
test_sources = [ 'test-sip.c' ]
t = executable('sip', test_sources,
calls_sources, sip_sources,
calls_enum_sources, calls_resources,
wl_proto_sources, wayland_sources,
c_args : test_cflags_with_test_define,
link_args: test_link_args,
link_with : calls_vala,
dependencies: [calls_deps, sip_deps],
include_directories : [
calls_includes,
dummy_include,
sip_include,
]
)
test('sip', t, env: test_env)
endif