tests: add more tests

This commit is contained in:
Wim Taymans 2019-01-08 17:38:34 +01:00
parent 1ed27a8f2b
commit b5a7891ee1
5 changed files with 446 additions and 16 deletions

View file

@ -1,7 +1,17 @@
test_array = executable('test-array', 'test-array.c',
test_apps = [
'test-array',
'test-client',
'test-core',
'test-remote'
]
foreach a : test_apps
test(a, executable(a, a + '.c',
dependencies : [pipewire_dep],
install : false)
test('test-array', test_array)
c_args : [ '-D_GNU_SOURCE' ],
install : false))
endforeach
if have_cpp
test_cpp = executable('test-cpp', 'test-cpp.cpp',