about summary refs log tree commit diff
path: root/src/tests/config/meson.build
blob: f65f90bb801c8328200a615bf4c99b3b0e579c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
test_unit = 'test-config'

sources = files(
  'nm-test-device.c',
  'test-config.c',
)

test_config_dir = meson.current_source_dir()

exe = executable(
  test_unit,
  sources,
  dependencies: test_nm_dep,
)

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