summaryrefslogtreecommitdiff
path: root/src/dhcp/tests/meson.build
blob: 2a6b55df2b1bc166a8488250fae4e1eecc8e74a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
test_units = [
  'test-dhcp-dhclient',
  'test-dhcp-utils'
]

foreach test_unit: test_units
  exe = executable(
    test_unit,
    test_unit + '.c',
    dependencies: test_nm_dep,
    c_args: '-DTESTDIR="@0@"'.format(meson.current_source_dir())
  )

  test(test_unit, exe)
endforeach