about summary refs log tree commit diff
path: root/src/dhcp/tests/meson.build
blob: 43b33951ca6783699f68f19081c581ee98f70c56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
test_units = [
  'test-dhcp-dhclient',
  'test-dhcp-utils',
]

foreach test_unit: test_units
  exe = executable(
    test_unit,
    test_unit + '.c',
    dependencies: test_nm_dep,
  )

  test(
    'dhcp/' + test_unit,
    test_script,
    args: test_args + [exe.full_path()],
    timeout: default_test_timeout,
  )
endforeach