about summary refs log tree commit diff
path: root/libnm/tests/meson.build
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2019-01-25 10:49:37 +0100
committerSebastien Bacher <seb128@ubuntu.com>2019-01-25 10:49:37 +0100
commit404ebe62622150e77e311777dff8617eb974e834 (patch)
treecc7f73d3e435d5b3ee85e2bef833e8de1fb133e3 /libnm/tests/meson.build
parent227c401a10a930af6fd5f123aef345fcd130d6aa (diff)
parent3626b425d1bc017fdc6f1ea0cfd329d1e1681641 (diff)
Merge remote-tracking branch 'salsa/upstream' into upstream
Diffstat (limited to 'libnm/tests/meson.build')
-rw-r--r--libnm/tests/meson.build11
1 files changed, 6 insertions, 5 deletions
diff --git a/libnm/tests/meson.build b/libnm/tests/meson.build
index e2b88273..ae2f7124 100644
--- a/libnm/tests/meson.build
+++ b/libnm/tests/meson.build
@@ -1,14 +1,14 @@
 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 = [
   '-DNETWORKMANAGER_COMPILATION_TEST',
   '-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_LIBNM',
-] + nm_build_cflags
+]
 
 foreach test_unit: test_units
   exe = executable(
@@ -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