test: move the client and utils tests over here

This commit is contained in:
Peter Hutterer 2021-08-04 15:05:15 +10:00 committed by Wim Taymans
parent 99a10c1606
commit d0060fbddd
4 changed files with 52 additions and 37 deletions

View file

@ -51,6 +51,7 @@ test('test pipewire utils',
executable('test-pw-utils',
'test-properties.c',
'test-array.c',
'test-utils.c',
include_directories: pwtest_inc,
link_with: pwtest_lib)
)
@ -60,6 +61,12 @@ test('test lib',
include_directories: pwtest_inc,
link_with: pwtest_lib)
)
test('test client',
executable('test-client',
'test-client.c',
include_directories: pwtest_inc,
link_with: pwtest_lib)
)
test('test context',
executable('test-context',
'test-context.c',