diff options
Diffstat (limited to 'tests/meson.build')
-rw-r--r-- | tests/meson.build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/meson.build b/tests/meson.build index 92c3586..6dcfcf1 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -1,14 +1,16 @@ +subdir('io') + test_names = [ 'basic-test', ] foreach _test : test_names test_bin = executable(_test, - '@0@.vala'.format(_test), + files('@0@.vala'.format(_test)), dependencies: libcontacts_dep, ) test(_test, test_bin, - suite: 'gnome-contacts', + suite: 'src', ) endforeach |