From 97f447d670229f34490e6d0744d595388f737d7c Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 2 Jul 2015 14:21:45 +1000 Subject: [PATCH] test: up the default test timeout to 10s 3s is too easy to hit on congested systems. 10s is overkill, but it's still better to pass a test late than having to restart the whole test-suite again. Signed-off-by: Peter Hutterer Reviewed-by: Hans de Goede --- test/litest.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/litest.c b/test/litest.c index a5eeb5a7..a91207e4 100644 --- a/test/litest.c +++ b/test/litest.c @@ -2390,6 +2390,8 @@ main(int argc, char **argv) list_init(&all_tests); + setenv("CK_DEFAULT_TIMEOUT", "10", 0); + mode = litest_parse_argv(argc, argv); if (mode == LITEST_MODE_ERROR) return EXIT_FAILURE;