summaryrefslogtreecommitdiff
path: root/libnm-glib/tests/meson.build
blob: de74f3b2cbf76cce3555c90793f87e844102a76b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
deps = [
  dbus_dep,
  dbus_glib_dep,
  libnm_glib_dep,
  libnm_util_dep,
  shared_nm_glib_aux_dep,
]

test_units = [
  'test-nm-client',
  'test-remote-settings-client',
]

foreach test_unit: test_units
  exe = executable(
    test_unit,
    [test_unit + '.c'] + shared_nm_test_utils_impl_c,
    dependencies: deps,
    c_args:
      common_cflags + [
        '-DNETWORKMANAGER_COMPILATION_TEST',
      ],
  )

  test(
    'libnm-glib/' + test_unit,
    test_script,
    args: test_args + [exe.full_path()],
  )
endforeach