summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Popela <tpopela@redhat.com>2019-01-03 14:55:00 +0100
committerTomas Popela <tpopela@redhat.com>2019-01-03 14:02:39 +0000
commitbe3921c239d10efa845bd24d8c61266ae92ecb13 (patch)
tree0942845ad4a5e91c3d469e1fb1bb298b2c2c2dd3
parent00b248affb679c2103fc55d1f3656346d1db2002 (diff)
downloadlibsoup-be3921c239d10efa845bd24d8c61266ae92ecb13.tar.gz
meson: Increase the timeout for tests
Increase the timeout as on some architectures the tests could be slower than the default 30 seconds. Fixes #122
-rw-r--r--tests/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 3ddd9707..afd97566 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -107,7 +107,9 @@ foreach test: tests
sources : [ test_name + '.c', test_resources ],
link_with : test_utils,
dependencies : [glib_dep, libsoup_dep, platform_deps])
- test(test_name, test_target, env : env, is_parallel : test[1])
+ # Increase the timeout as on some architectures the tests could be slower
+ # than the default 30 seconds.
+ test(test_name, test_target, env : env, is_parallel : test[1], timeout : 60)
endforeach
executable('ntlm-test-helper', 'ntlm-test-helper.c',