about summary refs log tree commit diff
path: root/libnm/tests
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2018-10-24 21:02:52 +0200
committerMichael Biebl <biebl@debian.org>2018-10-24 21:02:52 +0200
commitf87c30ac3b55627a166953aec4de552f5a8c5a53 (patch)
tree1eb82dba7af28b0504403e2aacaeaf927d14065c /libnm/tests
parentbf9fe831a32fc90b956ee777b629adaf6df49d65 (diff)
parent3626b425d1bc017fdc6f1ea0cfd329d1e1681641 (diff)
Update upstream source from tag 'upstream/1.14.4'
Update to upstream version '1.14.4'
with Debian dir 3e8398be8782c0495d64cae17094a6b9e5e62907
Diffstat (limited to 'libnm/tests')
-rw-r--r--libnm/tests/meson.build9
1 files changed, 5 insertions, 4 deletions
diff --git a/libnm/tests/meson.build b/libnm/tests/meson.build
index 27fafb77..ae2f7124 100644
--- a/libnm/tests/meson.build
+++ b/libnm/tests/meson.build
@@ -1,8 +1,8 @@
 test_units = [
-  ['test-general',                [libnm_utils, libnm_core]],
-  ['test-nm-client',              []],
-  ['test-remote-settings-client', []],
-  ['test-secret-agent',           []],
+  ['test-general',                [libnm_utils, libnm_core], 30],
+  ['test-nm-client',              [],                        90],
+  ['test-remote-settings-client', [],                        90],
+  ['test-secret-agent',           [],                        90],
 ]
 
 cflags = [
@@ -28,6 +28,7 @@ foreach test_unit: test_units
   test(
     'libnm/' + test_unit[0],
     test_script,
+    timeout: test_unit[2],
     args: test_args + [exe.full_path()]
   )
 endforeach