summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: d3eddf0352b9a0b6c1356d1bf891c3d676ce406a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

test_names = [
  'errors',
  'fdio',
  'macros',
  'shutil',
  'xattrs',
]

foreach test_name : test_names
  exe = executable(test_name,
    ['test-libglnx-' + test_name + '.c', 'libglnx-testlib.h'],
    dependencies: [
      libglnx_dep,
      libglnx_deps,
    ],
  )
  test(test_name, exe)
endforeach