summaryrefslogtreecommitdiff
path: root/src/devices/tests/meson.build
blob: 015b2a6fe2e3332f11620a548ee6709ae740257e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
test_units = [
  'test-arping',
  'test-lldp'
]

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

  test(test_unit, exe)
endforeach