From: Tobias Brunner Date: Thu, 13 Feb 2020 15:42:13 +0000 (+0100) Subject: unit-tests: Increase timeout for test vectors suite X-Git-Tag: 5.8.3dr1~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb25022197bc3e0c4c92f46e90ed217ca6ed87eb;p=thirdparty%2Fstrongswan.git unit-tests: Increase timeout for test vectors suite These occasionally fail due to the current timeout on IBM Power on Travis. --- diff --git a/src/libstrongswan/tests/suites/test_vectors.c b/src/libstrongswan/tests/suites/test_vectors.c index b5733fef88..0cc862fe67 100644 --- a/src/libstrongswan/tests/suites/test_vectors.c +++ b/src/libstrongswan/tests/suites/test_vectors.c @@ -62,7 +62,7 @@ Suite *vectors_suite_create() tc = tcase_create("transforms"); tcase_add_loop_test(tc, test_vectors, 0, countof(tfs)); - tcase_set_timeout(tc, 20); + tcase_set_timeout(tc, 30); suite_add_tcase(s, tc); return s;