diff options
Diffstat (limited to 'src/tests/meson.build')
| -rw-r--r-- | src/tests/meson.build | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/tests/meson.build b/src/tests/meson.build index 430ffe43..153128f2 100644 --- a/src/tests/meson.build +++ b/src/tests/meson.build @@ -7,20 +7,21 @@ test_units = [ 'test-ip6-config', 'test-dcb', 'test-wired-defname', - 'test-utils' + 'test-utils', ] foreach test_unit: test_units exe = executable( test_unit, test_unit + '.c', - dependencies: test_nm_dep + dependencies: test_nm_dep, ) test( 'src/' + test_unit, test_script, - args: test_args + [exe.full_path()] + args: test_args + [exe.full_path()], + timeout: default_test_timeout, ) endforeach @@ -37,11 +38,14 @@ exe = executable( include_directories: src_inc, dependencies: nm_core_dep, c_args: cflags, - link_with: libsystemd_nm + link_with: [ + libnm_systemd_core, + libnm_systemd_shared, + ], ) test( 'src/' + test_unit, test_script, - args: test_args + [exe.full_path()] + args: test_args + [exe.full_path()], ) |