diff options
Diffstat (limited to 'src/devices/tests/meson.build')
| -rw-r--r-- | src/devices/tests/meson.build | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/tests/meson.build b/src/devices/tests/meson.build index 02c61ced..4702c656 100644 --- a/src/devices/tests/meson.build +++ b/src/devices/tests/meson.build @@ -1,18 +1,19 @@ test_units = [ 'test-acd', - 'test-lldp' + 'test-lldp', ] foreach test_unit: test_units exe = executable( test_unit, test_unit + '.c', - dependencies: test_nm_dep + dependencies: test_nm_dep, ) test( 'devices/' + test_unit, test_script, - args: test_args + [exe.full_path()] + args: test_args + [exe.full_path()], + timeout: default_test_timeout, ) endforeach |