diff options
Diffstat (limited to 'libnm/tests/meson.build')
| -rw-r--r-- | libnm/tests/meson.build | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/libnm/tests/meson.build b/libnm/tests/meson.build index d76b9f5f..5b72a24f 100644 --- a/libnm/tests/meson.build +++ b/libnm/tests/meson.build @@ -1,8 +1,8 @@ test_units = [ - ['test-general', [libnm_utils, libnm_core], 30], - ['test-nm-client', [], 90], - ['test-remote-settings-client', [], 90], - ['test-secret-agent', [], 90], + ['test-libnm', 30], + ['test-nm-client', 90], + ['test-remote-settings-client', 90], + ['test-secret-agent', 90], ] cflags = [ @@ -12,24 +12,26 @@ cflags = [ foreach test_unit: test_units exe = executable( - 'libnm-' + test_unit[0], + test_unit[0], [ test_unit[0] + '.c', shared_nm_test_utils_impl_c, ], dependencies: [ - libnm_dep, - libnm_core_dep, + liblibnm_dep, libnm_systemd_shared_no_logging_dep, ], c_args: cflags, - link_with: test_unit[1], + link_with: [ + liblibnm, + libnm_core, + ], ) test( - 'libnm/' + test_unit[0], + test_unit[0], test_script, - timeout: test_unit[2], + timeout: test_unit[1], args: test_args + [exe.full_path()], ) endforeach |