summaryrefslogtreecommitdiff
path: root/src/devices/tests/meson.build
blob: 02c61ced1d2a1ee20467b9526417cd6ee17fdec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
test_units = [
  'test-acd',
  'test-lldp'
]

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

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